30 lines
591 B
PHP
30 lines
591 B
PHP
<?php
|
|
/**
|
|
* The template for displaying all pages
|
|
*/
|
|
get_header();
|
|
?>
|
|
|
|
<!-- Page Hero section -->
|
|
<section class="page-hero">
|
|
<div class="hero-content">
|
|
<h1><?php the_title(); ?></h1>
|
|
<?php if (get_the_excerpt()) : ?>
|
|
<p><?php echo get_the_excerpt(); ?></p>
|
|
<?php endif; ?>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Page Content -->
|
|
<section class="page-content">
|
|
<div class="container">
|
|
<?php
|
|
while (have_posts()) :
|
|
the_post();
|
|
the_content();
|
|
endwhile;
|
|
?>
|
|
</div>
|
|
</section>
|
|
|
|
<?php get_footer(); ?>
|