blag: don't put author name in front of title in RSS feeds
authorroot <root@neptun.rohieb.name>
Wed, 23 Oct 2013 05:07:45 +0000 (07:07 +0200)
committerroot <root@neptun.rohieb.name>
Wed, 23 Oct 2013 05:07:45 +0000 (07:07 +0200)
templates/rssitem.tmpl [new file with mode: 0644]

diff --git a/templates/rssitem.tmpl b/templates/rssitem.tmpl
new file mode 100644 (file)
index 0000000..67ce7f7
--- /dev/null
@@ -0,0 +1,29 @@
+<item>
+<TMPL_IF AUTHOR>
+       <title><TMPL_VAR TITLE></title>
+       <dcterms:creator><TMPL_VAR AUTHOR ESCAPE=HTML></dcterms:creator>
+<TMPL_ELSE>
+       <title><TMPL_VAR TITLE></title>
+</TMPL_IF>
+<TMPL_IF GUID>
+       <guid isPermaLink="false"><TMPL_VAR GUID></guid>
+<TMPL_ELSE>
+       <guid isPermaLink="false"><TMPL_VAR URL></guid>
+</TMPL_IF>
+       <link><TMPL_VAR PERMALINK></link>
+<TMPL_IF CATEGORIES>
+<TMPL_LOOP 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 ENCLOSURE>
+       <enclosure url="<TMPL_VAR ENCLOSURE>" type="<TMPL_VAR TYPE>" length="<TMPL_VAR LENGTH>" />
+<TMPL_ELSE>
+       <description><TMPL_VAR CONTENT ESCAPE=HTML></description>
+</TMPL_IF>
+<TMPL_IF COMMENTSURL>
+       <comments><TMPL_VAR COMMENTSURL></comments>
+</TMPL_IF>
+</item>
This page took 0.024986 seconds and 4 git commands to generate.