summaryrefslogtreecommitdiff
path: root/rssitem.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'rssitem.tmpl')
-rw-r--r--rssitem.tmpl22
1 files changed, 22 insertions, 0 deletions
diff --git a/rssitem.tmpl b/rssitem.tmpl
new file mode 100644
index 0000000..f22e5e3
--- /dev/null
+++ b/rssitem.tmpl
@@ -0,0 +1,22 @@
+<item>
+ <TMPL_IF NAME="AUTHOR">
+ <title><TMPL_VAR AUTHOR ESCAPE=HTML>: <TMPL_VAR TITLE></title>
+ <dcterms:creator><TMPL_VAR AUTHOR ESCAPE=HTML></dcterms:creator>
+ <TMPL_ELSE>
+ <title><TMPL_VAR TITLE></title>
+ </TMPL_IF>
+ <guid><TMPL_VAR URL></guid>
+ <link><TMPL_VAR PERMALINK></link>
+ <TMPL_IF NAME="CATEGORIES">
+ <TMPL_LOOP NAME="CATEGORIES">
+ <category><TMPL_VAR CATEGORY></category>
+ </TMPL_LOOP>
+ </TMPL_IF>
+ <pubDate><TMPL_VAR CDATE_822></pubDate>
+ <dcterms:modified><TMPL_VAR MDATE_3339></dcterms:modified>
+ <TMPL_IF NAME="ENCLOSURE">
+ <enclosure url="<TMPL_VAR ENCLOSURE>" type="<TMPL_VAR TYPE>" length="<TMPL_VAR LENGTH>" />
+ <TMPL_ELSE>
+ <description><![CDATA[<TMPL_VAR CONTENT>]]></description>
+ </TMPL_IF>
+</item>