17 lines
197 B
PHP
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(); ?>
|