Login   Register  
PHP Classes
elePHPant
Icontem

File: app/MyFirstBlog/_templates/list.phtml

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Gjero Krsteski  >  PIMF  >  app/MyFirstBlog/_templates/list.phtml  >  Download  
File: app/MyFirstBlog/_templates/list.phtml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PIMF
Framework for Web application development
Author: By
Last change: remove short echo notation from the templates
Date: 2013-04-11 07:35
Size: 278 bytes
 

Contents

Class file image Download
<nav>
    <ul>
      <?php
      foreach($this->entries as $entry) :
      ?>
        <li>
            <h2><a href="?action=showentry&id=<?php echo $entry->getId()?>"><?php echo $entry->getTitle()?></a></h2>
        </li>
      <?php
      endforeach;
      ?>
    </ul>
</nav>