This repository has been archived on 2025-03-01. You can view files and clone it, but cannot push or open issues or pull requests.
trantor/templates/news.rss
2016-01-28 18:13:26 -05:00

20 lines
388 B
XML

<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
{{with .S}}
<title>{{.Title}}</title>
<description>News of the library</description>
<link>{{.BaseURL}}/news/</link>
{{end}}
{{$baseURL := .S.BaseURL}}
{{range .News}}
<item>
<title>{{.Date}}</title>
<description>{{.Text}}</description>
<link>{{$baseURL}}/news/</link>
</item>
{{end}}
</channel>
</rss>