Added missing "Social" section to SiteInfo
authordelputnam <del@putnams.net>
Thu, 2 Jul 2015 14:04:17 +0000 (10:04 -0400)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 2 Jul 2015 17:26:01 +0000 (19:26 +0200)
I could be wrong here, but it looks to me like .Site.Social.facebook is used in tpl/template_embedded.go, but the variable is never set. I've added a line to initializeSiteInfo to map the info from config into this variable.

hugolib/site.go

index a4804de95be73763e71ea63cfde5674edf11bae7..6167c04538891db371dcedc528d3f35bc981d25d 100644 (file)
@@ -469,6 +469,7 @@ func (s *Site) initializeSiteInfo() {
                BaseURL:               template.URL(helpers.SanitizeURLKeepTrailingSlash(viper.GetString("BaseURL"))),
                Title:                 viper.GetString("Title"),
                Author:                viper.GetStringMap("author"),
+               Social:                viper.GetStringMapString("social"),
                LanguageCode:          viper.GetString("languagecode"),
                Copyright:             viper.GetString("copyright"),
                DisqusShortname:       viper.GetString("DisqusShortname"),