Current File : /home/karenpetzb/application/modules/default/views/scripts/blog/sujet.phtml
<?php echo $this->render("/blog/_blogHeader.phtml"); ?>
<div class="col-md-12">
  <div class="row">
    <div class="col-lg-8 noPadding">
      <h1 class="blog-title"><?php echo $this->currentSubject['title']; ?></h1> 
      <p><?php echo $this->currentSubject['sub_title']; ?></p>
      <p><?php echo $this->currentSubject['message']; ?></p>

      <div class="col-md-12">
        <?php if($this->currentCategory['is_close'] == 0 && $this->currentSubject['is_close'] == 0) { 
              echo $this->render("/blog/_blogAddPost.phtml"); 
        } ?>
      </div>
      <div class="col-md-12">
        <hr>
          <?php  
          $posts = $this->listComments;
          if (!empty($posts)) {
            foreach ($posts as $post) {  
		          $this->currentPost = $post;
              echo $this->render("/blog/_blogShortDetailComment.phtml"); 
             } 
          }?>
      </div>
    </div>
 
    <div class="col-md-4">
      <?php echo $this->render("/blog/_blogCategories.phtml");  ?> 
    </div>

  </div>
</div>