HEX
Server: Apache
System: Linux hz.vslconceptsdomains.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: dkfounda (3233)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/dkfounda/public_html/wp-content/themes/benevolent/template-home.php
<?php
/**
 * Template Name: Home Page
 *
 * @package Benevolent
 */

get_header(); 

    ?>
    <div id="primary" class="content-area">
		<main id="main" class="site-main" role="main">
			<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
				<h2><?php the_title(); ?></h2>
			    <div class="post-thumbnail">
		        	<?php the_post_thumbnail(); ?>
		        </div>
			    
			    <?php 
				while ( have_posts() ) : the_post(); ?> 
			        <div class="entry-content" itemprop="text">
			            <?php the_content(); ?> 
			        </div><!-- .entry-content -->
			    <?php endwhile; ?>
			</article><!-- #post-## -->

		</main><!-- #main -->
	</div>
    <?php
    
get_footer();