surwiki/templates/changes.html
Magnus Hoff 5c161ed13e Refactor footer.
Add link to home page, this fixes #9.

Add links to _changes and _sitemap
2017-10-13 15:14:12 +02:00

22 lines
380 B
HTML

<div class="container">
<header>
<h1>Changes</h1>
</header>
<article>
<table>
<tr>
<th>Article</th>
<th>Updated</th>
</tr>
{{#changes}}
<tr>
<td><a href="{{#.slug.is_empty()?}}.{{/.slug.is_empty()}}{{.slug}}">{{.title}}</a></td>
<td>{{.created}}</td>
</tr>
{{/changes}}
</table>
</article>
</div>
{{>default_footer.html}}