Archived
0
0
Fork 0
This repository has been archived on 2025-03-09. You can view files and clone it, but cannot push or open issues or pull requests.
www/layouts/_default/list.xml.html

13 lines
354 B
HTML
Raw Normal View History

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