aboutsummaryrefslogtreecommitdiff
path: root/templates/feedlink.tmpl
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2011-01-02 18:23:45 +0100
committerJoey Hess <joey@kitenet.net>2011-01-06 14:40:33 -0400
commit962b1c130cbbb61855e14244b7ccc9d96f9f1847 (patch)
tree7a0d6d338394f10dac0a10c7c038acbc6932ab00 /templates/feedlink.tmpl
parentea713f002515c3c60c28fc5eb0d70d421093af83 (diff)
downloadikiwiki-962b1c130cbbb61855e14244b7ccc9d96f9f1847.tar
ikiwiki-962b1c130cbbb61855e14244b7ccc9d96f9f1847.tar.gz
inline: pass the Atom/RSS titles to the templates
The default templates are also updated to make use of this information. The rel="alternate" attribute is also inserted, for completeness. (cherry picked from commit 618ade535e6a7967a510d9e210edaef3d37cc9bc)
Diffstat (limited to 'templates/feedlink.tmpl')
-rw-r--r--templates/feedlink.tmpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/feedlink.tmpl b/templates/feedlink.tmpl
index be8637f0f..fdad7f918 100644
--- a/templates/feedlink.tmpl
+++ b/templates/feedlink.tmpl
@@ -1,8 +1,8 @@
<div id="feedlink">
<TMPL_IF RSSURL>
-<a class="feedbutton" type="application/rss+xml" href="<TMPL_VAR RSSURL>">RSS</a>
+<a class="feedbutton" type="application/rss+xml" rel="alternate" title="<TMPL_VAR RSSDESC>" href="<TMPL_VAR RSSURL>">RSS</a>
</TMPL_IF>
<TMPL_IF ATOMURL>
-<a class="feedbutton" type="application/atom+xml" href="<TMPL_VAR ATOMURL>">Atom</a>
+<a class="feedbutton" type="application/atom+xml" rel="alternate" title="<TMPL_VAR ATOMDESC>" href="<TMPL_VAR ATOMURL>">Atom</a>
</TMPL_IF>
</div>