File: /home/assibfaf/public_html/wp-content/themes/zzero/page.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(); ?>
<?php while ( have_posts() ) : the_post(); ?>
<section class="section seo-section pt-5" style="padding-top: 50px;">
<div class="container">
<div class="row">
<div class="col-lg-8">
<h1 class="title title--md"><?php the_title(); ?></h1>
<?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>
<div class="col-lg-4 d-none d-lg-block">
<?php get_sidebar(); ?>
</div>
</div>
</div>
</section>
<?php endwhile; ?>
<section class="section features-section">
<div class="container">
<h2 class="title title--md">What you get from our essay writing service</h2>
<?php get_template_part( 'widgets/features' ); ?>
</div>
</section>
<?php get_template_part( 'widgets/cta', 'calculator' ); ?>
<?php get_footer();