13 lines
424 B
XML
13 lines
424 B
XML
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||
|
<rss version="2.0">
|
||
|
<channel>
|
||
|
<title>{{ .Title }}</title>
|
||
|
{{ range .Items }}
|
||
|
<item>
|
||
|
<title>{{ .Title }}</title>
|
||
|
<guid>{{ .InfoHash }}</guid>
|
||
|
<enclosure url="magnet:?xt=urn:btih:{{ .InfoHash }}&dn={{ .Title }}" type="application/x-bittorrent" />
|
||
|
</item>
|
||
|
{{ end }}
|
||
|
</channel>
|
||
|
</rss>
|