aboutsummaryrefslogtreecommitdiff
path: root/layouts/index.gemini_atom.xml
diff options
context:
space:
mode:
authorNicholas Johnson <mail@nicholasjohnson.ch>2024-11-07 00:00:00 +0000
committerNicholas Johnson <mail@nicholasjohnson.ch>2024-11-08 00:00:00 +0000
commit86ed54e73b7f8c86f4e3150cfae59f438820f81a14cb53958089db3bd2b61a2e (patch)
tree4db4cdb04f45ad2a9fcf7ff9c4451447441b84585c915d5d11ec6daa1ee89794 /layouts/index.gemini_atom.xml
parente8ce80b80dc1ebfc1db1e0cee7a7f7ac1e0e7e94961e456e5e60d1a15caeb7fe (diff)
downloadhugo-theme-journal-86ed54e73b7f8c86f4e3150cfae59f438820f81a14cb53958089db3bd2b61a2e.tar.gz
hugo-theme-journal-86ed54e73b7f8c86f4e3150cfae59f438820f81a14cb53958089db3bd2b61a2e.zip
Set Gemini protocol
This avoids littering the gemtext templates with regex to change the protocol.
Diffstat (limited to 'layouts/index.gemini_atom.xml')
-rw-r--r--layouts/index.gemini_atom.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/layouts/index.gemini_atom.xml b/layouts/index.gemini_atom.xml
index de1478b..6eb6b8e 100644
--- a/layouts/index.gemini_atom.xml
+++ b/layouts/index.gemini_atom.xml
@@ -32,11 +32,11 @@
{{ "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" | safeHTML }}
<feed xmlns="http://www.w3.org/2005/Atom">
- <id>{{ .Permalink | replaceRE `^https://(.*)index.gmi$` "gemini://$1" }}</id>
+ <id>{{ .Permalink | replaceRE `index.gmi$` "" }}</id>
<title>{{ .Site.Title }}</title>
<updated>{{ .Date.Format "2006-01-02T15:04:05-0700" | safeHTML }}</updated>
- <link href="{{ .Permalink | replaceRE `^https://(.*)/index.gmi$` "gemini://$1/atom.xml" | safeURL }}" rel="self" />
- <link href="{{ .Permalink | replaceRE `^https://(.*)index.gmi$` "gemini://$1" | safeURL }}" rel="alternate" />
+ <link href="{{ .Permalink | replaceRE `index.gmi$` "atom.xml" | safeURL }}" rel="self" />
+ <link href="{{ .Permalink | replaceRE `index.gmi$` "" | safeURL }}" rel="alternate" />
{{- with $authorName }}
<author>
<name>{{ . }}</name>
@@ -47,9 +47,9 @@
<rights type="html">{{ replace .Site.Copyright "{currentYear}" (now.Format "2006") }}</rights>
<subtitle>{{ .Site.Params.Description }}</subtitle>{{ range first .Site.Config.Services.RSS.Limit .Site.RegularPages }}
<entry>
- <id>{{ .Permalink | replaceRE `^https://(.*)index.gmi$` "gemini://$1" }}</id>
+ <id>{{ .Permalink | replaceRE `index.gmi$` "" }}</id>
<title>{{ .Title }}</title>
<updated>{{ .Date.Format "2006-01-02T15:04:05-0700" | safeHTML }}</updated>
- <link href="{{ .Permalink | replaceRE `^https://(.*)index.gmi$` "gemini://$1" | safeURL }}" rel="alternate" />
+ <link href="{{ .Permalink | replaceRE `index.gmi$` "" | safeURL }}" rel="alternate" />
</entry>{{ end }}
</feed>