File: /home/awaldron/_domains/phlibrary.alanwaldron.com/wp-content/themes/phlibrary/page.php
<?php
/**
* The template for displaying all pages.
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site will use a
* different template.
*
* @package understrap
*/
// Exit if accessed directly.
defined('ABSPATH') || exit;
get_header();
$container = get_theme_mod('understrap_container_type');
$head_image = get_the_post_thumbnail_url($post->ID, 'full');
?>
<?php if ($head_image): ?>
<div class="sub-image" style="background-image: url(<?php echo $head_image ?>)">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center"></div>
</div>
</div>
</div>
<?php else: ?>
<br/><br/>
<?php endif; ?>
<div class="container">
<div class="row">
<div class="col-sm-12">
<h2 class="red"><?= get_the_title() ?></h2>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<?= get_the_content() ?>
</div>
</div>
</div>
<?php get_footer(); ?>