summaryrefslogtreecommitdiff
path: root/layouts/_default/term.gemini_atom.xml
diff options
context:
space:
mode:
authorNicholas Johnson <nick@nicholasjohnson.ch>2023-02-24 00:00:00 +0000
committerNicholas Johnson <nick@nicholasjohnson.ch>2023-02-24 00:00:00 +0000
commitdc89efa0d1ba80e8a7c61ddd2d0d4243cc82e52fb2c9104311b4ba5e2af81ff6 (patch)
tree377e286c42216fe50949c2e53a3c5aecfebf3d60be70a4d800f272370157191a /layouts/_default/term.gemini_atom.xml
parent4200dccb4372c7095e151803364c3f34eaa466327a2fc015a7a89065e4742b22 (diff)
Implement term Atom feeds
Diffstat (limited to 'layouts/_default/term.gemini_atom.xml')
-rw-r--r--layouts/_default/term.gemini_atom.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/layouts/_default/term.gemini_atom.xml b/layouts/_default/term.gemini_atom.xml
new file mode 100644
index 0000000..85ff034
--- /dev/null
+++ b/layouts/_default/term.gemini_atom.xml
@@ -0,0 +1,21 @@
+{{ "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" | safeHTML }}
+<feed xmlns="http://www.w3.org/2005/Atom">
+ <id>{{ replace .Permalink "https://" "gemini://" }}</id>
+ <title>{{ .Site.Title }}</title>
+ <updated>{{ .Date.Format "2006-01-02T15:04:05Z" | safeHTML }}</updated>
+ <link href="{{ replace .Permalink "https://" "gemini://" | safeURL }}atom.xml" rel="self" />
+ <link href="{{ replace .Permalink "https://" "gemini://" | safeURL }}" rel="alternate" />
+ <author>
+ <name>{{ .Site.Author.name }}</name>
+ <email>{{ .Site.Author.email }}</email>
+ </author>
+ <generator>Hugo -- gohugo.io</generator>
+ <rights type="html">{{ replace .Site.Copyright "{currentYear}" (now.Format "2006") }}</rights>
+ <subtitle>{{ .Site.Params.Description }}</subtitle>{{ range first .Site.Config.Services.RSS.Limit .Data.Pages }}
+ <entry>
+ <id>{{ replace .Permalink "https://" "gemini://" | safeURL }}</id>
+ <title>{{ .Title }}</title>
+ <updated>{{ .Date.Format "2006-01-02T15:04:05Z" | safeHTML }}</updated>
+ <link href="{{ replace .Permalink "https://" "gemini://" | safeURL }}" rel="alternate" />
+ </entry>{{ end }}
+</feed>