Current File : /home/karenpetzb/application/modules/default/views/scripts/blog/actualites.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->currentCategory['title']; ?></h1>
<p><?php echo $this->currentCategory['sub_title']; ?></p>
<hr>
<?php
$posts = $this->listSubjects;
if (!empty($posts)) {
foreach ($posts as $post) {
$this->currentPost = $post;
echo $this->render("/blog/_blogShortDetail.phtml");
}
}?>
</div>
<div class="col-md-4">
<?php echo $this->render("/blog/_blogCategories.phtml"); ?>
</div>
</div>
</div>