1
0
mirror of synced 2025-01-10 02:57:10 +03:00
doctrine2/website/apps/frontend/modules/blog/templates/indexSuccess.php

18 lines
614 B
PHP
Raw Normal View History

2007-09-12 02:00:52 +04:00
<?php use_helper('Date'); ?>
<div class="content" id="blog">
<h1>Doctrine Blog</h2>
<?php foreach($latestBlogPosts AS $blogPost): ?>
<div class="blog_post">
<h2><?php echo link_to($blogPost->getName(), '@blog_post?slug='.$blogPost->getSlug()); ?></h2>
2007-09-12 02:00:52 +04:00
<h3>Posted <?php echo distance_of_time_in_words(strtotime($blogPost->getCreatedAt())); ?> ago.</h3>
<p><?php echo $blogPost->getBody(); ?></p>
</div>
<?php endforeach; ?>
</div>
<?php slot('right'); ?>
<?php echo get_partial('latest_blog_posts', array('latestBlogPosts' => $latestBlogPosts)); ?>
<?php end_slot(); ?>