diff options
author | Amitai Schlair <schmonz-web-ikiwiki@schmonz.com> | 2013-02-21 01:39:31 -0500 |
---|---|---|
committer | Amitai Schlair <schmonz-web-ikiwiki@schmonz.com> | 2013-02-21 01:39:31 -0500 |
commit | e9f9a63739cb79196ea0c231f09ab844f0665145 (patch) | |
tree | a6b99f848d1e5cbc7f0a03c3ec055f373430a40c /templates | |
parent | 984f2ab952cb97990fc0d2460c2e335127a73491 (diff) | |
download | ikiwiki-e9f9a63739cb79196ea0c231f09ab844f0665145.tar ikiwiki-e9f9a63739cb79196ea0c231f09ab844f0665145.tar.gz |
Don't prepend author to title (Atom doesn't).
Diffstat (limited to 'templates')
-rw-r--r-- | templates/rssitem.tmpl | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/templates/rssitem.tmpl b/templates/rssitem.tmpl index 2d315173b..9acefb5d3 100644 --- a/templates/rssitem.tmpl +++ b/templates/rssitem.tmpl @@ -1,16 +1,14 @@ <item> -<TMPL_IF 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> <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 AUTHOR> + <dcterms:creator><TMPL_VAR AUTHOR ESCAPE=HTML></dcterms:creator> +</TMPL_IF> <TMPL_IF CATEGORIES> <TMPL_LOOP CATEGORIES> <category><TMPL_VAR CATEGORY></category> |