aboutsummaryrefslogtreecommitdiff
path: root/templates/rssitem.tmpl
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-07-31 00:34:18 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-07-31 00:34:18 +0000
commite4ccc4f3b09aaaa4f64bdba1d6ffff24e924fd20 (patch)
tree4d52652fd1361095964691d4662c5a76660e6015 /templates/rssitem.tmpl
parent908e004b4c5a1970246afd055a34dea4ea146b3e (diff)
downloadikiwiki-e4ccc4f3b09aaaa4f64bdba1d6ffff24e924fd20.tar
ikiwiki-e4ccc4f3b09aaaa4f64bdba1d6ffff24e924fd20.tar.gz
fix title metadata on blogs, reorg needed to do it, simplified tag some
Diffstat (limited to 'templates/rssitem.tmpl')
-rw-r--r--templates/rssitem.tmpl12
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/rssitem.tmpl b/templates/rssitem.tmpl
new file mode 100644
index 000000000..421600591
--- /dev/null
+++ b/templates/rssitem.tmpl
@@ -0,0 +1,12 @@
+<item>
+ <title><TMPL_VAR TITLE ESCAPE=HTML></title>
+ <guid><TMPL_VAR URL></guid>
+ <link><TMPL_VAR URL></link>
+ <TMPL_IF NAME="CATEGORIES">
+ <TMPL_LOOP NAME="CATEGORIES">
+ <category><TMPL_VAR NAME=CATEGORY></category>
+ </TMPL_LOOP>
+ </TMPL_IF>
+ <pubDate><TMPL_VAR PUBDATE></pubDate>
+ <description><![CDATA[<TMPL_VAR CONTENT>]]></description>
+</item>