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>
26 lines
509 B
PHP
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(); ?>
|