Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.atom.xml « layouts - github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e29f962a8355f26b64934cc47df3cdf88dcdaa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<feed xmlns="http://www.w3.org/2005/Atom">
    {{- with .Title }}{{ . }} | {{ end }}{{ .Site.Title -}}
    <link href="{{ .Permalink }}index.xml" rel="self"/>
    <link href="{{ .Permalink }}"/>
    {{- if not .Date.IsZero -}}
        <updated>
            {{- .Date.Format "02-01-2006T15:04:05-07:00" -}}
        </updated>
    {{- end -}}
    <id>
        {{- .Permalink -}}
    </id>
    <author>
        {{- with .Site.Author.name -}}
            <name>{{ . }}</name>
        {{- end -}}
        {{- with .Site.Author.email -}}
            <email>{{ . }}</email>
        {{- end -}}
    </author>
    <generator>Hugo -- gohugo.io</generator>
    {{- range first 15 (where .Data.Pages "Type" "in" .Site.Params.mainSections) -}}
        <entry>
            <title type="html"><![CDATA[{{ .Title -}}]]></title>
            <link href="{{ .Permalink }}"/>
            <id>
                {{- .Permalink -}}
            </id>
            {{- with .Site.Author.name -}}
                <author>
                    <name>
                        {{- . -}}
                    </name>
                </author>
            {{- end -}}
            <published>
                {{- .Date.Format "2006-01-02T15:04:05-07:00" -}}
            </published>
            <updated>
                {{- .Lastmod.Format "2006-01-02T15:04:05-07:00" -}}
            </updated>
            <content type="html"><![CDATA[{{- .Content -}}]]></content>
        </entry>
    {{- end -}}
</feed>