This repository has been archived on 2026-03-11. You can view files and clone it, but cannot push or open issues or pull requests.
payfrit-wp/index.php
2026-01-26 22:57:00 -08:00

27 lines
526 B
PHP

<?php
/**
* Default template fallback
* Redirects to home page since we only have specific page templates
*/
get_header();
?>
<section class="page-header">
<div class="container">
<h1><?php the_title(); ?></h1>
</div>
</section>
<section class="content-section">
<div class="container">
<?php
if (have_posts()) :
while (have_posts()) : the_post();
the_content();
endwhile;
endif;
?>
</div>
</section>
<?php get_footer(); ?>