Archived
1
0
Fork 0
This repository has been archived on 2026-05-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
fiktivkod/application/modules/admin/views/scripts/index/index.phtml
2011-02-26 14:15:01 +01:00

10 lines
287 B
PHTML

<h1>Admin module, more here later.</h1>
<h1>Posts</h1>
<ul class="custom">
<?php foreach ($this->posts as $post): ?>
<li><a href="<?=$this->url(array('controller' => 'blog', 'id' => $post->id), 'admin', true) ?>"><?=$post->title ?></a></li>
<?php endforeach; ?>
</ul>