This commit is contained in:
2026-09-06 00:14:07 +02:00
parent 56e7e28142
commit 4d8a7a6924
41 changed files with 2993 additions and 0 deletions
@@ -0,0 +1,28 @@
<?php
/**
* Fallback template: generic page.
*/
get_header();
?>
<main>
<section class="page-hero">
<div class="container">
<h1><?php the_title(); ?></h1>
</div>
</section>
<section class="section">
<div class="container">
<?php
while ( have_posts() ) :
the_post();
the_content();
endwhile;
?>
</div>
</section>
</main>
<?php
get_footer();