nowa-panda/themes/panda-theme/page.php

17 lines
197 B
PHP
Raw Permalink Normal View History

2025-07-07 07:52:36 +00:00
<?php
/**
* Szablon stron statycznych
*/
get_header(); ?>
<main class="site-main">
<?php
while ( have_posts() ) {
the_post();
the_content();
}
?>
</main>
<?php get_footer(); ?>