projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7142374
)
make the value of the BuildDrafts flag available to templates.This can be useful...
author
Nate Finch
<nate.finch@gmail.com>
Thu, 11 Sep 2014 02:34:00 +0000
(22:34 -0400)
committer
spf13
<steve.francia@gmail.com>
Thu, 11 Sep 2014 21:24:10 +0000
(17:24 -0400)
hugolib/site.go
patch
|
blob
|
history
diff --git
a/hugolib/site.go
b/hugolib/site.go
index fdb2b2663a9dd187e1faa3a69b4963d707feae3b..02257131d55dee17ead5d4bc85922e8bf730c66d 100644
(file)
--- 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,