diff options
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> |