BuildDate string
)
-// Hugo contains all the information about the current Hugo environment
+// HugoInfo contains information about the current Hugo environment
type HugoInfo struct {
Version string
Generator string
BuildDate string
}
-func NewHugoInfo() HugoInfo {
- return HugoInfo{
+func newHugoInfo() *HugoInfo {
+ return &HugoInfo{
Version: Version,
CommitHash: CommitHash,
BuildDate: BuildDate,
Params map[string]interface{}
Date time.Time
Sitemap Sitemap
- Hugo *HugoInfo
+ hugo *HugoInfo
UrlPath
}
return false
}
+func (n *Node) Hugo() *HugoInfo {
+ if n.hugo == nil {
+ n.hugo = newHugoInfo()
+ }
+ return n.hugo
+}
+
func (n *Node) isSameAsDescendantMenu(inme *MenuEntry, parent *MenuEntry) bool {
if parent.HasChildren() {
for _, child := range parent.Children {
Taxonomies TaxonomyList
Source source.Input
Sections Taxonomy
- Hugo HugoInfo
Info SiteInfo
Shortcodes map[string]ShortcodeFunc
Menus Menus
s.Menus = Menus{}
- s.Hugo = NewHugoInfo()
s.initializeSiteInfo()
s.Shortcodes = make(map[string]ShortcodeFunc)
Menus: &s.Menus,
Params: params,
Permalinks: permalinks,
- Hugo: &s.Hugo,
}
}
for i, wp := range s.Sections[k] {
if i > 0 {
- wp.Page.NextInSection = s.Sections[k][i - 1].Page;
+ wp.Page.NextInSection = s.Sections[k][i-1].Page
}
- if i < len(s.Sections[k]) - 1 {
- wp.Page.PrevInSection = s.Sections[k][i + 1].Page;
+ if i < len(s.Sections[k])-1 {
+ wp.Page.PrevInSection = s.Sections[k][i+1].Page
}
}
}
return &Node{
Data: make(map[string]interface{}),
Site: &s.Info,
- Hugo: &s.Hugo,
}
}