LuckyCoinkydink/templates/2k11/entries_summary.tpl
2011-11-28 07:44:46 +01:00

16 lines
722 B
Smarty

{serendipity_hookPlugin hook="entries_header"}
<div class="archives">
<h2>{$CONST.TOPICS_OF} {$dateRange.0|@formatTime:"%B %Y"}</h2>
<ul class="archives_summary plainList">
{foreach from=$entries item="sentries"}
{foreach from=$sentries.entries item="entry"}
<li><a href="{$entry.link}">{$entry.title}</a>
<span class="serendipity_byline">{$CONST.POSTED_BY} <a href="{$entry.link_author}">{$entry.author}</a> {$CONST.ON} <time datetime="{$entry.timestamp|@serendipity_smarty_html5time}" pubdate>{$entry.timestamp|@formatTime:$template_option.date_format}</time></span>
</li>
{/foreach}
{/foreach}
</ul>
</div>
{serendipity_hookPlugin hook="entries_footer"}