From: Nate Finch Date: Thu, 11 Sep 2014 02:34:00 +0000 (-0400) Subject: make the value of the BuildDrafts flag available to templates.This can be useful... X-Git-Tag: v0.13~412 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a72ca38c;p=brevno-suite%2Fhugo make the value of the BuildDrafts flag available to templates.This can be useful for if you only want to show some specific information on your local machine and/or when showing drafts. --- diff --git a/hugolib/site.go b/hugolib/site.go index fdb2b266..02257131 100644 --- a/hugolib/site.go +++ b/hugolib/site.go @@ -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,