blob: 6d99272c420c276f1cd3bb8cf2ebeb9397f9301e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?xml version="1.0"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<atom:link href="https://{{ .Domain }}{{ .URL }}" rel="self" type="application/rss+xml" />
<title>{{ .Title }}</title>
<link>https://{{ .Domain }}/{{ .URI }}/</link>
<description>{{ .PageDescription }}</description>
<language>fr-fr</language>
{{ $domain := .Domain }}
{{ range .Section.Data }}
<item>
<title>{{ .DataTitle }}</title>
<link>https://{{ $domain }}/{{ .URI }}/{{ .Slug }}</link>
<guid>https://{{ $domain }}/{{ .URI }}/{{ .Slug }}</guid>
<description>{{ .Description }}</description>
<pubDate>{{ .PubDateRSS }}</pubDate>
</item>
{{ end }}
</channel>
</rss>
|