19 lines
542 B
PHP
19 lines
542 B
PHP
<!-- Get Header -->
|
|
<?php get_header(); ?>
|
|
|
|
<!-- Padder Section -->
|
|
<div id="padder" class="hidden lg:flex h-24 w-full z-20 lg:h-28">
|
|
</div>
|
|
<div class="bg-yellow-400 mb-4 mx-auto page-header pb-8 px-4 md:px-8">
|
|
<div class="max-w-7xl mb-8 mx-auto pt-40 px-4 md:px-8">
|
|
<div>
|
|
<h1 class="font-bold text-4xl text-white tracking-tight"><?php the_title(); ?></h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="max-w-7xl mb-28 mx-auto pb-16 px-8">
|
|
<?php the_content(); ?>
|
|
</div>
|
|
|
|
<!-- Get Footer -->
|
|
<?php get_footer(); ?>
|