| Recommend this page to a friend! |
| Classes of Gjero Krsteski | > | PIMF | > | app/MyFirstBlog/_templates/list.phtml | > | 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>
|