| Server IP : 10.200.247.200 / Your IP : 216.73.217.19 Web Server : Apache System : Linux synergy-usa-sites 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64 User : jeremy ( 1001) PHP Version : 8.4.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/usa_sites/governmentgrants.us/wp-content/themes/governmentgrants/ |
Upload File : |
<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package WordPress
* @subpackage Naren_Designs
* @since 1.0
* @version 1.0
*/
get_header(); ?>
<?php if ( get_field( 'featured_image_big') ): ?>
<section class="featured-header bg-parallax bg-overlay-black align-center full-width" data-url="<?php the_field( 'featured_image_big' ); ?>">
<div class="amp-container v-center">
<?php if( get_field('custom_page_title') ): ?>
<h1 class="page-title color-white"><?php the_field('custom_page_title'); ?></h1>
<?php else: ?>
<h1 class="page-title color-white"><?php the_title(); ?></h1>
<?php endif ?>
</div>
</section>
<?php else: ?>
<section class="breadcrumbs bg-dark py50 mb-py30 align-center full-width">
<div class="amp-container">
<?php if( get_field('custom_page_title') ): ?>
<h1 class="page-title m0 color-white"><?php the_field('custom_page_title'); ?></h1>
<?php else: ?>
<h1 class="page-title m0 color-white"><?php the_title(); ?></h1>
<?php endif ?>
</div>
</section>
<?php endif ?>
<section class="post-content full-width py40 mb-py30">
<div class="container">
<?php
/* Start the Loop */
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/post/content', get_post_format() );
// 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;
/*the_post_navigation( array(
'prev_text' => '<span class="screen-reader-text">' . __( 'Previous Post', 'narendesigns' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Previous', 'narendesigns' ) . '</span> <span class="nav-title"><span class="nav-title-icon-wrapper"><i class="fa fa-angle-left"></i></span>%title</span>',
'next_text' => '<span class="screen-reader-text">' . __( 'Next Post', 'narendesigns' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Next', 'narendesigns' ) . '</span> <span class="nav-title">%title<span class="nav-title-icon-wrapper"><i class="fa fa-angle-right"></i></span></span>',
) );
*/
endwhile; // End of the loop.
?>
</div>
</section>
<?php //get_sidebar(); ?>
<!-- Service Boxes-->
<section class="full-width services py60 bg-gray-light " id="services">
<div class="container">
<h2>Services Offered</h2>
<div class="clear services-grid">
<?php echo do_shortcode('[widget id="text-6"]'); ?>
<?php echo do_shortcode('[widget id="text-7"]'); ?>
<?php echo do_shortcode('[widget id="text-8"]'); ?>
<?php echo do_shortcode('[widget id="text-9"]'); ?>
</div>
</div>
</section>
<?php get_footer();