forked from ali1234/ytsubs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
feedtemplate.xml
30 lines (30 loc) · 1.04 KB
/
feedtemplate.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title type="text">YouTube</title>
<updated>{{update_time}}</updated>
<id>https://www.youtube.com</id>
<logo>https://www.youtube.com/favicon.ico</logo>
<link rel="alternate" type="text/html" href="https://www.youtube.com" />
<author>
<name>{{user}}</name>
</author>
{%for entry in entries %}
<entry>
<title>{{entry['title']}}</title>
<link href="{{entry['link']}}"/>
<author>
<name>{{entry['author']}}</name>
</author>
<published>{{entry['pubDate']}}</published>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<a href="{{entry['link']}}">
<img src="{{entry['thumbnail']}}" alt="{{entry['title']}}" height="180" width="320" /><br />
{{entry['duration']}}
</a>
<p>{{entry['description']}}</p>
</div>
</content>
</entry>
{%endfor%}
</feed>