make the value of the BuildDrafts flag available to templates.This can be useful...
authorNate Finch <nate.finch@gmail.com>
Thu, 11 Sep 2014 02:34:00 +0000 (22:34 -0400)
committerspf13 <steve.francia@gmail.com>
Thu, 11 Sep 2014 21:24:10 +0000 (17:24 -0400)
hugolib/site.go

index fdb2b2663a9dd187e1faa3a69b4963d707feae3b..02257131d55dee17ead5d4bc85922e8bf730c66d 100644 (file)
@@ -92,6 +92,7 @@ type SiteInfo struct {
        ConfigGet       func(key string) interface{}
        Permalinks      PermalinkOverrides
        Params          map[string]interface{}
+       BuildDrafts     bool
 }
 
 func (s *SiteInfo) GetParam(key string) interface{} {
@@ -279,6 +280,7 @@ func (s *Site) initializeSiteInfo() {
                LanguageCode:    viper.GetString("languagecode"),
                Copyright:       viper.GetString("copyright"),
                DisqusShortname: viper.GetString("DisqusShortname"),
+               BuildDrafts:     viper.GetBool("BuildDrafts"),
                Pages:           &s.Pages,
                Recent:          &s.Pages,
                Menus:           &s.Menus,