Peter Stuifzand
607ab7ce15
All checks were successful
continuous-integration/drone/push Build is passing
23 lines
609 B
HTML
23 lines
609 B
HTML
{{ define "navbar" }}
|
|
{{ end }}
|
|
|
|
{{ define "content" }}
|
|
<h1 class="title">{{ .Title }}</h1>
|
|
|
|
<table class="table">
|
|
<col width="10%">
|
|
<col width="150px">
|
|
<col width="100px">
|
|
<col width="auto">
|
|
{{ range $index, $change := .Recent }}
|
|
<tr>
|
|
<td>{{ $change.DateSummary }}</td>
|
|
<td>{{ $change.TimeSummary }}</td>
|
|
<td>{{ $change.Count }}</td>
|
|
<td><a href="/{{ $change.Page }}">{{ $change.Page }}</a></td>
|
|
<td>{{ $change.Body }}</td>
|
|
</tr>
|
|
{{ end }}
|
|
</table>
|
|
{{ end }}
|