diff options
Diffstat (limited to 'layouts/index.gemini_atom.xml')
-rw-r--r-- | layouts/index.gemini_atom.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/layouts/index.gemini_atom.xml b/layouts/index.gemini_atom.xml index cc9d9f7..62a0a09 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://` "gemini://" | replaceRE `(?m)index.gmi$` "" }}</id> + <id>{{ .Permalink | replaceRE `^https://` "gemini://" | replaceRE `index.gmi$` "" }}</id> <title>{{ .Site.Title }}</title> <updated>{{ .Date.UTC.Format "2006-01-02T15:04:05Z" | safeHTML }}</updated> - <link href="{{ .Permalink | replaceRE `^https://` "gemini://" | replaceRE `(?m)index.gmi$` "atom.xml" | safeURL }}" rel="self" /> - <link href="{{ .Permalink | replaceRE `^https://` "gemini://" | replaceRE `(?m)index.gmi$` "" | safeURL }}" rel="alternate" /> + <link href="{{ .Permalink | replaceRE `^https://` "gemini://" | replaceRE `index.gmi$` "atom.xml" | safeURL }}" rel="self" /> + <link href="{{ .Permalink | replaceRE `^https://` "gemini://" | replaceRE `index.gmi$` "" | safeURL }}" rel="alternate" /> {{- with $authorName }} <author> <name>{{ . }}</name> @@ -47,9 +47,9 @@ <rights type="html">{{ replace .Site.Copyright "{currentYear}" (now.UTC.Format "2006") }}</rights> <subtitle>{{ .Site.Params.Description }}</subtitle>{{ range first .Site.Config.Services.RSS.Limit .Site.RegularPages }} <entry> - <id>{{ .Permalink | replaceRE `^https://` "gemini://" | replaceRE `(?m)index.gmi$` "" | safeURL }}</id> + <id>{{ .Permalink | replaceRE `^https://` "gemini://" | replaceRE `index.gmi$` "" | safeURL }}</id> <title>{{ .Title }}</title> <updated>{{ .Date.UTC.Format "2006-01-02T15:04:05Z" | safeHTML }}</updated> - <link href="{{ .Permalink | replaceRE `^https://` "gemini://" | replaceRE `(?m)index.gmi$` "" | safeURL }}" rel="alternate" /> + <link href="{{ .Permalink | replaceRE `^https://` "gemini://" | replaceRE `index.gmi$` "" | safeURL }}" rel="alternate" /> </entry>{{ end }} </feed> |