21 lines
361 B
PHP
21 lines
361 B
PHP
<?php
|
|
|
|
/**
|
|
* Single post template.
|
|
*
|
|
* @package ThemeStarter
|
|
*/
|
|
|
|
?>
|
|
|
|
<!-- Get Header -->
|
|
<?php get_header(); ?>
|
|
|
|
<!-- Single Post Template -->
|
|
<section class="flex h-full items-center justify-center">
|
|
<i class="text-7xl bi-sticky"></i>
|
|
<h1 class="text-2xl p-4 underline ">Single Post Template</h1>
|
|
</section>
|
|
|
|
<!-- Get Footer -->
|
|
<?php get_footer(); ?>
|