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.
22 lines
609 B
22 lines
609 B
{{ 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 }}
|
|
|