Files
2026-02-20 08:57:44 +01:00

17 lines
325 B
PHP

<!--
Name: Regulamin parkingu
->
<?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(); ?>