1{serendipity_hookPlugin hook="entries_header"}
2<div class="serendipity_Entry_Date">
3    <h3 class='serendipity_date'>{$CONST.TOPICS_OF} {$dateRange.0|@formatTime:"%B, %Y"}</h3>
4    <div class="serendipity_entry archive_summary_entry">
5        {foreach from=$entries item="sentries"}
6            {foreach from=$sentries.entries item="entry"}
7                <dl class="archive_summary {cycle values='archive_summary_odd,archive_summary_even'}">
8                    <dt class="archive_summary_title"><a href="{$entry.link}">{$entry.title|truncate:80:" ..."}</a></dt>
9                    <dd class="archive_summary_postdate">{$entry.timestamp|@formatTime:$template_option.date_format}</dd>
10                  {if $template_option.footerauthor == 'true' or $template_option.footercategories == 'true'}
11                    <dd class="archive_summary_postdetails">
12                        {if $template_option.footerauthor == 'true'}
13                            {$CONST.POSTED_BY} <address class="author"><a href="{$entry.link_author}">{$entry.author}</a></address>
14                        {/if}
15                        {if $template_option.footercategories == 'true'}
16                            {if $entry.categories}
17                                {$CONST.IN} {foreach from=$entry.categories item="entry_category" name="categories"}<a href="{$entry_category.category_link}">{$entry_category.category_name|@escape}</a>{if not $smarty.foreach.categories.last}, {/if}{/foreach}
18                            {/if}
19                        {/if}
20                    </dd>
21                  {/if}
22                </dl>
23            {/foreach}
24        {/foreach}
25    </div>
26</div>
27
28<div class='serendipity_pageFooter' style="text-align: center">
29{serendipity_hookPlugin hook="entries_footer"}
30</div>
31