You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wiki/templates/recent.html

15 lines
355 B

{{ define "navbar" }}
{{ end }}
{{ define "content" }}
<h1 class="title">{{ .Title }}</h1>
<table class="table">
{{ range $index, $change := .Recent }}
<tr>
<td>{{ $change.Date }}</td>
<td><a href="/{{ $change.Page }}">{{ $change.Page }}</a></td>
</tr>
{{ end }}
</table>
{{ end }}