File: /home/assibfaf/public_html/wp-content/themes/zzero/single.php
<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package WordPress
* @subpackage Gringo
* @since Gringo 1.0
*/
get_header(); ?>
<section class="section pt-5" style="padding-top: 50px;">
<div class="container">
<?php
/* Start the Loop */
while ( have_posts() ) :
the_post();
gringo_post_views( get_the_ID() );
?>
<div class="row">
<div class="col-lg-8">
<?php the_breadcrumb(); ?>
<?php the_title( '<h1>', '</h1>' ); ?>
<?php gringo_entry_categories(); ?>
<?php the_content(); ?>
<div class="pay-buttons seo-section__buttons">
<a href="<?php echo esc_url( home_url( '/order' ) ); ?>" class="btn btn--primary pay-buttons__item" rel="nofollow">Continue to order</a>
<a href="<?php echo esc_url( home_url( '/inquiry' ) ); ?>" class="btn btn--alternate pay-buttons__item" rel="nofollow">Get a quote</a>
</div>
<div style="margin-top:40px;">
<?php the_post_navigation(); ?>
</div>
</div>
<div class="col-lg-4 d-none d-lg-block">
<?php get_sidebar(); ?>
</div>
</div>
<?php endwhile; ?>
</div>
</section>
<?php get_template_part( 'widgets/cta', 'calculator' ); ?>
<section class="section features-section">
<div class="container">
<?php get_template_part( 'widgets/features' ); ?>
</div>
</section>
<?php get_template_part( 'widgets/guarantees' ); ?>
<?php get_footer();