This commit is contained in:
2022-01-03 17:36:14 +00:00
parent 2c989e6591
commit 1182ed10ca
2 changed files with 15 additions and 1 deletions

View File

@@ -2,12 +2,23 @@
<feed xmlns="http://www.w3.org/2005/Atom">
<id>{{ .URL }}</id>
<title>{{ .Title }}</title>
<author>
<name>Nick Thomas</name>
<email>gemini@ur.gs</email>
</author>
<updated>{{ site.Generated.Format "2006-01-02T15:04:05Z07:00" }}</updated>
<link href="{{ .URL }}" rel="alternate"/>
<link href="{{ .URL | safeURL }}" rel="alternate"/>
{{ range .Pages }}<entry>
<id>{{ .URL }}</id>
<title>{{ .Title }}</title>
<author>
<name>Nick Thomas</name>
<email>gemini@ur.gs</email>
</author>
<updated>{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}</updated>
<link href="{{ .URL | safeURL }}" rel="alternate"/>
</entry>
{{ end -}}
</feed>