www/layouts/_default/list.xml.xml
2026-08-28 16:00:55 +02:00

12 lines
368 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<events>
{{ range .Pages }}
<event>
<title>{{ .Title | html }}</title>
<link>{{ .Permalink }}</link>
<date>{{ .Date.Format "2006-01-02" }}</date>
<description>{{ .Summary | plainify | html }}</description>
{{ with .Params.location }}<location>{{ . }}</location>{{ end }}
</event>
{{ end }}
</events>