website/themes/nluug/layouts/custom/latest-changes.html
2023-05-14 15:23:42 +02:00

18 lines
399 B
HTML

{{ define "main" }}
<h2>Laatste wijzigingen</h2>
{{ $byLastMod := .Site.RegularPages.ByLastmod.Reverse }}
<table>
{{ range $byLastMod }}
<tr>
<td>{{ .Lastmod }}</td>
<td>{{ .Title }}</td>
<td>{{ with .File }}{{ .Lang }}{{ end }}</td>
<td>{{ with .File }}{{ .Path }}{{ end }}</td>
</tr>
{{ end }}
</table>
<div>{{ .Content }}</div>
{{ end }}