forked from laurens/fediversity_website
Toevoegen van pagina met laatste wijzigingen
This commit is contained in:
parent
41576563e1
commit
cbe21727ac
15
content/website/laatste-wijzigingen/index.rst
Normal file
15
content/website/laatste-wijzigingen/index.rst
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
categories:
|
||||||
|
- website
|
||||||
|
date: 2023-05-13T00:07:52+02:00
|
||||||
|
description: "Placeholder: duidelijke beschrijving"
|
||||||
|
lastmod: 2023-05-13T00:07:52+02:00
|
||||||
|
tags:
|
||||||
|
- website
|
||||||
|
slug:
|
||||||
|
title: "Laatste wijzigingen"
|
||||||
|
type: custom
|
||||||
|
layout: latest-changes
|
||||||
|
---
|
||||||
|
|
||||||
|
Deze pagina bevat de laatste wijzingen op de website.
|
18
themes/nluug/layouts/custom/latest-changes.html
Normal file
18
themes/nluug/layouts/custom/latest-changes.html
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{{ 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 }}
|
Reference in a new issue