templates/rss.xml.gotmpl (view raw)
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"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>crispy blog</title>
<link>https://crispy-caesus.eu/en/blog</link>
<description>
Just my little blog with thoughts and cursed solutions to stupid problems
</description>
<language>en-us</language>
<atom:link
href="https://crispy-caesus.eu/en/blog/rss.xml"
rel="self"
type="application/rss+xml"
/>
{{range .}}<item>
<title>{{.Title}}</title>
<link>https://crispy-caesus.eu/{{.Link}}</link>
</item>
{{end}}
</channel>
</rss>
|