surwiki/templates/changes.html

27 lines
671 B
HTML
Raw Normal View History

2017-10-03 11:37:18 +03:00
<div class="container">
<header>
<h1>Changes</h1>
</header>
<article>
{{#link_newer}}<p><a rel="prev" href="{{.}}">Show more recent changes</a></p>{{/link_newer}}
2017-10-03 11:37:18 +03:00
<table>
<tr>
2017-10-03 23:31:27 +03:00
<th>Article</th>
<th>Updated</th>
<th>Author</th>
2017-10-03 11:37:18 +03:00
</tr>
{{#changes}}
<tr>
2017-10-03 23:31:27 +03:00
<td><a href="{{#.slug.is_empty()?}}.{{/.slug.is_empty()}}{{.slug}}">{{.title}}</a></td>
2017-10-03 11:37:18 +03:00
<td>{{.created}}</td>
<td>{{#.author}}{{.}}{{/.author}}{{^.author}}<i>Anonymous</i>{{/.author}}</td>
2017-10-03 11:37:18 +03:00
</tr>
{{/changes}}
</table>
{{#link_older}}<p><a rel="next" href="{{.}}">Show older changes</a></p>{{/link_older}}
2017-10-03 11:37:18 +03:00
</article>
</div>
2017-10-13 16:25:44 +03:00
{{>footer/default.html}}