weedops-theme/index.php
John Mizerek 2db3c63e5a Initial commit: WeedOps WordPress theme
Custom theme for weedops.site — front page, header, footer,
functions, styles, and images.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-17 19:28:20 -07:00

26 lines
509 B
PHP

<?php
/**
* Default template fallback — redirect to home
*/
get_header();
?>
<section style="padding-top: calc(var(--nav-height) + 80px); padding-bottom: 64px;">
<div class="container">
<h1><?php the_title(); ?></h1>
</div>
</section>
<section>
<div class="container">
<?php
if (have_posts()) :
while (have_posts()) : the_post();
the_content();
endwhile;
endif;
?>
</div>
</section>
<?php get_footer(); ?>