22 lines
287 B
PHP
22 lines
287 B
PHP
<?php
|
|
|
|
/**
|
|
* Single post template.
|
|
*
|
|
* @package ThemeStarter
|
|
*/
|
|
|
|
?>
|
|
|
|
<!-- Get Header -->
|
|
<?php get_header(); ?>
|
|
|
|
<!-- Single Post Template -->
|
|
<section>
|
|
<div class="max-w-7xl mx-auto px-4">
|
|
<?php the_content() ?>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Get Footer -->
|
|
<?php get_footer(); ?>
|