-
Notifications
You must be signed in to change notification settings - Fork 0
/
rss.xml
37 lines (31 loc) · 977 Bytes
/
rss.xml
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
{{define "RSS"}}<?xml version="1.0"?>
<rss version="2.0">
<channel>
<title>Ebin Bellni Blog</title>
<link>https://ebinbellini.com/blog/</link>
<description>It is I, Ebin Bellini</description>
<copyright>(c) Ebin Bellini 2021</copyright>
<pubDate>{{.LastPostTime}}</pubDate>
<lastBuildDate>{{.LastChangeTime}}</lastBuildDate>
<managingEditor>ebinbellini@airmail.cc</managingEditor>
<webMaster>ebinbellini@airmail.cc</webMaster>
<image>
<title>Ebin Bellini Logo</title>
<url>https://ebinbellini.com/Imgs/logo.svg</url>
<link>https://ebinbellini.com</link>
<width>557</width>
<height>156</height>
<description>The logo for the ebinbellini.com website</description>
</image>
{{range .Posts}}
<item>
<title>{{.Name}}</title>
<link>{{.Path}}</link>
<description>{{.Desc}}</description>
<author>Ebin Bellini</author>
<guid>{{.Path}}</guid>
<pubDate>{{.PubDate}}</pubDate>
</item>
{{end}}
</channel>
</rss>{{end}}