aboutsummaryrefslogtreecommitdiff
path: root/layouts/index.gemini_atom.xml
blob: 769004b3d21f743c48c99bc0a20c33b33fde667ab887b95849986fc973f337c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<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" />{{ if not .Date.IsZero }}{{ end }}
    <author>
        <name>{{ $.Site.Author.name }}</name>
        <email>{{ $.Site.Author.email }}</email>
    </author>
    <generator>Hugo -- gohugo.io</generator>
    <rights type="html">{{ $.Site.Copyright }} {{ .Site.Params.beginCopyrightYear }}-{{ now.Format "2006" }} {{ $.Site.Author.name }}</rights>
    <subtitle>{{ $.Site.Params.Description }}</subtitle>{{ range first .Site.Config.Services.RSS.Limit .Site.RegularPages }}
    <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>