16 lines
439 B
PHP
16 lines
439 B
PHP
|
<?php get_header(); ?>
|
||
|
|
||
|
<!-- Page Content -->
|
||
|
<section class="container my-5">
|
||
|
<div class="row">
|
||
|
<div class="col-lg-8 mx-auto">
|
||
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
||
|
<h1 class="display-4"><?php the_title(); ?></h1>
|
||
|
<?php the_content(); ?>
|
||
|
<?php endwhile;
|
||
|
endif; ?>
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
<?php get_footer(); ?>
|