Exemple #1
0
<div class="container">
  <h1><b><?php 
echo $info['title'];
?>
</b></h1>
  <div id="content">
    <?php 
echo zmf::output($info['content']);
?>
  </div>
  <div id="comments">
    <h3>“脑洞患者”感言</h3>
    <?php 
if (!empty($posts)) {
    foreach ($posts as $row) {
        ?>
 
                <?php 
        $this->renderPartial('//comments/_comment', array('data' => $row));
        ?>
            <?php 
    }
}
?>
  </div>
  <?php 
if ($pages->itemCount > $pages->pageSize) {
    $this->renderPartial('//common/pager', array('pages' => $pages));
}
?>
  <?php