| 
<?php/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
 ?>
 <h2><?php echo $titulo; ?></h2>
 
 <?php
 if (isset($posts)):
 ?>
 <ul>
 <?php
 foreach ($posts as $post):
 echo "<li>{$post->titulo}</li>";
 
 endforeach;
 ?>
 </ul>
 <?php
 endif;
 ?>
 
 |