--- /dev/null
+{serendipity_hookPlugin hook="entries_header"}
+{foreach from=$archives item="archive"}
+<table cellspacing="4" cellpadding="4" border="0">
+ <tr>
+ <td colspan="4"><h2>{$archive.year}</h2></td>
+ </tr>
+ {foreach from=$archive.months item="month"}
+ <tr>
+ <td width="100"><img src="{serendipity_getFile file="img/graph_bar_horisontal.png"}" height="10" width="{math width=100 equation="count * width / max" count=$month.entry_count max=$max_entries format="%d"}" style="border: 1px solid #000000"></td>
+ <td>{$month.entry_count} {$CONST.ENTRY}</td>
+ <td>{$month.date|@formatTime:"%B"}</td>
+ <td>({if $month.entry_count}<a href="{$month.link}">{/if}{$CONST.VIEW_FULL}{if $month.entry_count}</a>{/if})</td>
+ <td>({if $month.entry_count}<a href="{$month.link_summary}">{/if}{$CONST.VIEW_TOPICS}{if $month.entry_count}</a>{/if})</td>
+ </tr>
+ {/foreach}
+</table>
+{/foreach}
+<div class='serendipity_entryFooter' style="text-align: center">
+{serendipity_hookPlugin hook="entries_footer"}</div>
--- /dev/null
+{serendipity_hookPlugin hook="entries_header"}
+<div class='serendipity_date'>{$CONST.TOPICS_OF} {$dateRange.0|@formatTime:"%B¡ %Y"}</div>
+
+<div class="serendipity_entry">
+ <ul>
+ {foreach from=$entries item="entries"}
+ {foreach from=$entries.entries item="entry"}
+ <li><a href="{$entry.link}">{$entry.title}</a>
+ <br />{$CONST.POSTED_BY} {$entry.author} {$CONST.ON} {$entry.timestamp|@formatTime:DATE_FORMAT_ENTRY}</li>
+ {/foreach}
+ {/foreach}
+ </ul>
+</div>
+<div class='serendipity_entryFooter' style="text-align: center">
+{serendipity_hookPlugin hook="entries_footer"}</div>