docs: Rename RSSlink to RSSLink
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 17 Nov 2016 07:18:55 +0000 (08:18 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 19 Nov 2016 11:00:25 +0000 (12:00 +0100)
The former will be deprecated.

docs/content/templates/homepage.md
docs/content/templates/partials.md
docs/content/templates/rss.md

index 81c5eb598de45f495309f58c21cd413105f0928a..21c832c51a05540bfd2f742759d1d83715100924 100644 (file)
@@ -60,7 +60,7 @@ It makes use of [partial templates](/templates/partials/) and uses a similar app
         <base href="{{ .Site.BaseURL }}">
         <title>{{ .Site.Title }}</title>
         <link rel="canonical" href="{{ .Permalink }}">
-        <link href="{{ .RSSlink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
+        <link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
 
         {{ partial "head_includes.html" . }}
     </head>
index 22b5f493fb506c4ebd80b724ea0b723cd19e4219..77cab478e393ddd040a9c0394b4705346b20540b 100644 (file)
@@ -65,7 +65,7 @@ This header template is used for [spf13.com](http://spf13.com/):
         <base href="{{ .Site.BaseURL }}">
         <title> {{ .Title }} : spf13.com </title>
         <link rel="canonical" href="{{ .Permalink }}">
-        {{ if .RSSlink }}<link href="{{ .RSSlink }}" rel="alternate" type="application/rss+xml" title="{{ .Title }}" />{{ end }}
+        {{ if .RSSLink }}<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Title }}" />{{ end }}
 
         {{ partial "head_includes.html" . }}
     </head>
index 70c3c77048e0cd9878927e0f62d8007270c76804..e7bec814a183f87a6884e3d94f7d41c73023b03e 100644 (file)
@@ -99,15 +99,15 @@ This is the default RSS template that ships with Hugo. It adheres to the [RSS 2.
 In your `header.html` template, you can specify your RSS feed in your `<head></head>` tag like this:
 
 ~~~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 }}" />
+{{ 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 }}" />
 {{ end }}
 ~~~
 
 ... with the autodiscovery link specified by the line with `rel="alternate"`.
 
-The `.RSSlink` will render the appropriate RSS feed URL for the section, whether it's everything, posts in a section, or a taxonomy.
+The `.RSSLink` will render the appropriate RSS feed URL for the section, whether it's everything, posts in a section, or a taxonomy.
 
 **N.b.**, if you reference your RSS link, be sure to specify the mime type with `type="application/rss+xml"`.