<?php
/**
 * Template Name: without Breadcrumb
 */
 get_header(); ?>
<div class="container">
  <div class="page-content">

    <?php
    if ( have_posts() ) :
        while ( have_posts() ) : the_post(); ?>
        <?php gt_set_post_view(); ?>
    <article class="single-title">

      <header>
        <h1><?php the_title(); ?></h1>
      <header>

      <div class="single-post-thumbnail">
        <figure>
          <?php the_post_thumbnail(); ?>
        </figure>
      </div>
      <div class="post-content">
        <?php the_content(); ?>
      </div>
    </article>
    <?php
    endwhile;
endif;
?>

<?php if ( comments_open() || get_comments_number() ) : ?>
  <div class="clear"></div><br><div class="post-comments">
    <div class="comments-title">
      <h3>نظرات:</h3>
    </div>
    <?php

    comments_template();

    ?>
  </div>
<?php endif; ?>
  </div>
</div>
<?php get_footer(); ?>
