HEX
Server: Apache
System: Linux vps.webnoxsoftware.com 4.18.0-553.70.1.el8_10.x86_64 #1 SMP Mon Aug 18 04:41:49 EDT 2025 x86_64
User: microfabengineer (1020)
PHP: 8.3.24
Disabled: NONE
Upload Files
File: /home/microfabengineer/public_html/wp-content/themes/personal-cv-resume/single.php
<?php
/**
 * The template for displaying all single posts
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
 *
 * @package Personal_CV_Resume
 */

get_header();

$layout = 'full-container';

/**
* Hook - container_wrap_start 		- 5
*
* @hooked personal_cv_resume_container_wrap_start
*/
 do_action( 'personal_cv_resume_container_wrap_start', esc_attr( $layout ));
?>
	

		<?php
		while ( have_posts() ) :
			the_post();

			get_template_part( 'template-parts/content', 'single' );

			/**
			* Hook - personal_cv_resume_site_footer
			*
			* @hooked personal_cv_resume_container_wrap_start
			*/
			do_action( 'personal_cv_resume_single_post_navigation');
			

			// If comments are open or we have at least one comment, load up the comment template.
			if ( comments_open() || get_comments_number() ) :
				comments_template();
			endif;

		endwhile; // End of the loop.
		?>

<?php
/**
* Hook - container_wrap_end 		- 999
*
* @hooked personal_cv_resume_container_wrap_end
*/
do_action( 'personal_cv_resume_container_wrap_end', esc_attr( $layout ));
get_footer();