surwiki/templates/changes.html

28 lines
531 B
HTML
Raw Normal View History

2017-10-03 11:37:18 +03:00
<div class="container">
<header>
<h1>Changes</h1>
</header>
<article>
<table>
<tr>
2017-10-03 23:31:27 +03:00
<th>Article</th>
<th>Updated</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>
</tr>
{{/changes}}
</table>
</article>
</div>
<footer>
<ul>
<li><a href="_new">Create article</a></li>
</ul>
<p>Powered by <a href="https://github.com/maghoff/sausagewiki">Sausagewiki</a></p>
</footer>