diff --git a/content/website/laatste-wijzigingen/index.rst b/content/website/laatste-wijzigingen/index.rst new file mode 100644 index 0000000..0f3fa69 --- /dev/null +++ b/content/website/laatste-wijzigingen/index.rst @@ -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. diff --git a/themes/nluug/layouts/custom/latest-changes.html b/themes/nluug/layouts/custom/latest-changes.html new file mode 100644 index 0000000..14efab9 --- /dev/null +++ b/themes/nluug/layouts/custom/latest-changes.html @@ -0,0 +1,18 @@ +{{ define "main" }} + +

Laatste wijzigingen

+ {{ $byLastMod := .Site.RegularPages.ByLastmod.Reverse }} + + + {{ range $byLastMod }} + + + + + + + {{ end }} +
{{ .Lastmod }}{{ .Title }}{{ with .File }}{{ .Lang }}{{ end }}{{ with .File }}{{ .Path }}{{ end }}
+ +
{{ .Content }}
+{{ end }}