nowa-panda/themes/panda-theme/page.php
2025-07-07 09:52:36 +02:00

17 lines
197 B
PHP

<?php
/**
* Szablon stron statycznych
*/
get_header(); ?>
<main class="site-main">
<?php
while ( have_posts() ) {
the_post();
the_content();
}
?>
</main>
<?php get_footer(); ?>