Files
2025-08-23 11:51:23 +02:00

14 lines
288 B
PHP

<?php get_header(); ?>
<main id="main">
<div class="container">
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', 'page' );
endwhile;
?>
</div>
</main>
<?php get_footer(); ?>