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/blog/views/scripts/index/latest.phtml
2010-09-11 21:49:06 +02:00

14 lines
No EOL
392 B
PHTML

<h1><?=$this->translate('u:blog') ?></h1>
<p><?=$this->translate('BLOG_TXT') ?></p>
<?php foreach ($this->posts as $post): ?>
<div>
<h3><?=$post->getTitle() ?></h3>
<div><?=$post->getContent() ?></div>
<div><?=$post->getPubDate()->toString('yyyy-MM-dd').' at '.$post->getPubDate()->toString('HH:mm').' '.$post->getAuthor()->getFirstName() ?></div>
</div>
<?php endforeach; ?>