diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2011-01-02 18:23:45 +0100 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-01-06 14:40:33 -0400 |
commit | 962b1c130cbbb61855e14244b7ccc9d96f9f1847 (patch) | |
tree | 7a0d6d338394f10dac0a10c7c038acbc6932ab00 /templates | |
parent | ea713f002515c3c60c28fc5eb0d70d421093af83 (diff) |
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')
-rw-r--r-- | templates/blogpost.tmpl | 4 | ||||
-rw-r--r-- | templates/feedlink.tmpl | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/templates/blogpost.tmpl b/templates/blogpost.tmpl index 5a31e3f8a..754f24b4e 100644 --- a/templates/blogpost.tmpl +++ b/templates/blogpost.tmpl @@ -1,10 +1,10 @@ <form action="<TMPL_VAR CGIURL>" method="get"> <div id="blogform"> <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> <input type="hidden" name="do" value="blog" /> <input type="hidden" name="from" value="<TMPL_VAR ROOTPAGE>" /> 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> |