HEX
Server: Apache
System: Linux p3plzcpnl507418.prod.phx3.secureserver.net 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64
User: retoti4c1e1s (10075650)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: /home/retoti4c1e1s/public_html/thecommitment.earth/wp-content/themes/ananke/page.php
<?php
/**
 * The template for displaying all pages
 */
$image_header = '';
if ( function_exists( 'rwmb_meta' ) ) {
	$images = rwmb_meta('_cmb_page_image', "type=image");
	foreach ( $images as $image ) {
		$image_header = $image['full_url'];
		break;
	}
}
get_header(); ?>
	
	<section class="blog" id="blog">
		<div class="parallax-section">	
			<div class="parallax-blog" <?php if($image_header != ''){ ?> style="background-image: url('<?php echo esc_url($image_header); ?>');" <?php } ?> ></div>
			<div class="overlay-blog"></div>
			<div class="container z-index-pages">
				<div class="twelve columns">
					<h1><?php the_title(); ?></h1>
				</div>
				<div class="twelve columns">
					<div class="sub-text"><?php echo esc_attr(get_post_meta(get_the_ID(),'_cmb_page_sub_title', true));  ?></div>
				</div>
			</div>
		</div>	
	</section>				
	
	<section class="blog-post-wrapper">
		<div class="container">
			<div class="eight columns">
				<?php while ( have_posts() ) : the_post(); ?>
					<div class="blog-post" id="blog-single">
						<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>	
							<?php if ( has_post_thumbnail() ) { ?>
								<?php the_post_thumbnail(); ?>
							<?php }?>
							<?php the_content();?>						
							<?php wp_link_pages(); ?>
						</div>
					</div>
				<?php endwhile; ?>					
			</div>
			<div class="four columns">
				<?php get_sidebar();?>
			</div>
		</div>	
	</section>	

<?php get_footer();