HEX
Server: Apache
System: Linux www3.pit.tblive.com 5.14.0-687.38.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 12 17:19:12 EDT 2026 x86_64
User: awaldron (1020)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
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(); ?>