new stuff
This commit is contained in:
commit
af8e618f01
12 changed files with 413 additions and 0 deletions
14
data/templates/xml.blocks.rss2.item.xml.jinja
Normal file
14
data/templates/xml.blocks.rss2.item.xml.jinja
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<item>
|
||||
<title>{{ item.title }}</title>
|
||||
<link>{{ item.link }}</link>
|
||||
<description>{{ item.description|e }}</description>
|
||||
{% if item.author != "None" %}
|
||||
<author>{{ item.author }}</author>
|
||||
{% endif %}
|
||||
{% if item.tags %}
|
||||
<category>{{ item.tags|join('/') }}</category>
|
||||
{% endif %}
|
||||
{% if item.indexDate != "None" %}
|
||||
<pubDate>{{ item.indexDate }}</pubDate>
|
||||
{% endif %}
|
||||
</item>
|
||||
Loading…
Add table
Add a link
Reference in a new issue