Add RSSLink to SiteInfo
authorCameron Moore <moorereason@gmail.com>
Wed, 11 Nov 2015 03:31:52 +0000 (21:31 -0600)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 20 Nov 2015 22:38:15 +0000 (23:38 +0100)
docs/content/templates/variables.md
hugolib/site.go

index c8f668b55f9d489ca707f4a4ee3d89292d19d66b..390a26c12d32923a5ad17c68b718f606bd6f89d3 100644 (file)
@@ -111,6 +111,7 @@ The last two can also be reversed: **.Data.Terms.Alphabetical.Reverse**, **.Data
 Also available is `.Site` which has the following:
 
 **.Site.BaseURL** The base URL for the site as defined in the site configuration file.<br>
+**.Site.RSSLink** The URL for the site RSS.<br>
 **.Site.Taxonomies** The [taxonomies](/taxonomies/usage/) for the entire site.  Replaces the now-obsolete `.Site.Indexes` since v0.11.<br>
 **.Site.Pages** Array of all content ordered by Date, newest first.  Replaces the now-deprecated `.Site.Recent` starting v0.13.<br>
 **.Site.Params** A container holding the values from the `params` section of your site configuration file. For example, a TOML config file might look like this:
index 09d42d68657e53ff16aa6551dc38f18652b6f99e..fdc615bf39cba403d5371c626fe37ae7d6d49885 100644 (file)
@@ -103,6 +103,7 @@ type SiteInfo struct {
        Menus                 *Menus
        Hugo                  *HugoInfo
        Title                 string
+       RSSLink               string
        Author                map[string]interface{}
        LanguageCode          string
        DisqusShortname       string
@@ -458,6 +459,7 @@ func (s *Site) initializeSiteInfo() {
                Copyright:             viper.GetString("copyright"),
                DisqusShortname:       viper.GetString("DisqusShortname"),
                GoogleAnalytics:       viper.GetString("GoogleAnalytics"),
+               RSSLink:               s.permalinkStr(viper.GetString("RSSUri")),
                BuildDrafts:           viper.GetBool("BuildDrafts"),
                canonifyURLs:          viper.GetBool("CanonifyURLs"),
                preserveTaxonomyNames: viper.GetBool("PreserveTaxonomyNames"),