30 lines
796 B
XML
30 lines
796 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
|
<channel>
|
|
<title>Mastodon</title>
|
|
<link>https://mastodon.social</link>
|
|
<description>Mastodon</description>
|
|
|
|
{{range $index, $status := .}}
|
|
<item>
|
|
<title>{{$status.Account.Username}} ({{$status.ID}})</title>
|
|
<content:encoded><![CDATA[
|
|
{{$user := $status.Account.Username}}
|
|
|
|
@{{$user}} ({{$status.ID}}): <br><br>
|
|
{{replaceAll $status.Content "\n" "<br>"}}
|
|
{{range $idxMedia, $media := $status.MediaAttachments}}
|
|
<br><a href="{{$media.URL}}"><img src="{{$media.URL}}"/></a>
|
|
{{end}}
|
|
]]></content:encoded>
|
|
|
|
<link>{{$status.URL}}</link>
|
|
<guid>{{$status.URL}}</guid>
|
|
<pubDate>{{$status.CreatedAt.Format "Mon, 02 Jan 2006 15:04:05 -0700"}}</pubDate>
|
|
</item>
|
|
{{- end}}
|
|
|
|
</channel>
|
|
</rss>
|
|
|