2019-02-18 19:47:31 +00:00
|
|
|
{{ 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>
|
2019-03-02 13:06:17 +00:00
|
|
|
<td>{{ $change.Body }}</td>
|
2019-02-18 19:47:31 +00:00
|
|
|
</tr>
|
|
|
|
{{ end }}
|
|
|
|
</table>
|
2019-03-02 13:06:17 +00:00
|
|
|
{{ end }}
|