File: /home/zeusxp5/lrliberia.com/wp-content/themes/lifttruck/single.php
<?php get_header() ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<section class="titlebar">
<div class="row">
<div class="large-8 small-12 large-centered columns">
<?php lifttruck_breadcrumb(); ?>
<h2 id="page-title" class="title"><?php the_title(); ?></h2>
<ul class="wd-post__meta wd-post__meta--single clearfix">
<li><?php echo get_the_date(); ?></li>
<li><?php echo esc_html__('By:','lifttruck'); ?> <b><?php echo get_the_author() ?> </b></li>
<li><?php echo '<i class="fas fa-folder-open"></i> '; echo esc_html__('Categories: ','lifttruck'); the_category(' '); ?></li>
<li><?php comments_number( 'no comments', 'one comment', '% comments' ); ?></li>
<?php the_tags('<li><i class="fas fa-tags"></i> '.esc_html__('Tags: ','lifttruck'), "", "</li>") ?>
</ul>
</div>
</div>
</section>
<main class="row">
<div class="large-8 medium-12 small-12 large-centered columns">
<div class="blog-posts ">
<div class="wd-post__thumbnail wd-post__thumbnail--single">
<?php the_post_thumbnail('lifttruck_blog-thumb'); ?>
</div>
<div class="wd-post__content wd-post__content--single">
<div class="wd-post__body wd-post__body--single clearfix">
<?php the_content(); ?>
</div>
</div>
</div>
<?php wp_link_pages( array( 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'lifttruck' ), 'after' => '</div>' ) ); ?>
</div>
</main>
<?php endwhile;
endif;?>
<div class="comments-container" >
<div class="row">
<div class="large-8 medium-12 small-12 large-centered columns">
<?php if (comments_open()|| get_comments_number()){
comments_template( '', true );
} ?>
</div>
</div>
</div>
<?php get_footer(); ?>