docs: Use single link element for RSS in example
authorTorbjörn Lönnemark <tobbez@ryara.net>
Sun, 7 May 2017 01:49:12 +0000 (03:49 +0200)
committerdigitalcraftsman <digitalcraftsman@users.noreply.github.com>
Fri, 9 Jun 2017 11:12:09 +0000 (13:12 +0200)
The rel attribute supports specifying a set of values, not only a single
one.

Using two link elements can also cause browsers to show the feed twice
in menus.

docs/content/templates/rss.md

index fe445469a4e15c3bc46abdc75c4e143d533dbb16..d14b574b4b541e04817f6372a9bd57609fad881c 100644 (file)
@@ -113,8 +113,7 @@ In your `header.html` template, you can specify your RSS feed in your `<head></h
 
 ~~~html
 {{ if .RSSLink }}
-  <link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
-  <link href="{{ .RSSLink }}" rel="feed" type="application/rss+xml" title="{{ .Site.Title }}" />
+  <link href="{{ .RSSLink }}" rel="alternate feed" type="application/rss+xml" title="{{ .Site.Title }}" />
 {{ end }}
 ~~~