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
2014-08-30 01:25:16 -05:00

20 lines
412 B
XML

<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
{{with .S}}
<title>Imperial Library of Trantor - News</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>