summaryrefslogtreecommitdiff
path: root/layouts/index.atom.xml
blob: 85750429cfcab69e0cfc434997ee69360a8b81a6c278c3450e4ce973714a9e4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{ "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" | safeHTML }}
<feed xmlns="http://www.w3.org/2005/Atom">
    <id>{{ .Permalink }}</id>
    <title>{{ .Site.Title }}</title>
    <updated>{{ .Date.Format "2006-01-02T15:04:05-07:00" | safeHTML }}</updated>
    <link href="{{ .Permalink }}atom.xml" rel="self">
    <link href="{{ .Permalink }}" rel="alternate">
    <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>{{ .Permalink }}</id>
        <title type="html">{{ .Title }}></title>
        <updated>{{ .Date.Format "2006-01-02T15:04:05-07:00" | safeHTML }}</updated>
        <link href="{{ .Permalink }}">
        <content type="html">{{ .Content | html }}</content>
    </entry>{{ end }}
</feed>