Current File : /home/karenpetzb/application/modules/default/views/scripts/blog/_blogCategories.phtml
<?php  
  $posts = $this->listCategories;
    if (!empty($posts)) { ?>
      <div class="well">
        <div class="row">
          <div class="col-xs-12">
            <ul class="list-unstyled">
              <?php  foreach ($posts as $post) {  ?>
              <li>
                <a href="<?php echo $this->baseUrl."/blog/actualites/id/".$post['id'] ?>"><?php echo $post['title'];?></a>
              </li>
              <?php } ?>
            </ul>
          </div>
        </div>
      </div>
<?php } ?>