BuildDate string
)
+var hugoInfo *HugoInfo
+
// HugoInfo contains information about the current Hugo environment
type HugoInfo struct {
Version string
BuildDate string
}
-func newHugoInfo() *HugoInfo {
- return &HugoInfo{
- Version: Version,
- CommitHash: CommitHash,
- BuildDate: BuildDate,
- Generator: `<meta name="generator" content="Hugo ` + Version + `" />`,
+func getHugoInfo() *HugoInfo {
+ if hugoInfo == nil {
+ hugoInfo = &HugoInfo{
+ Version: Version,
+ CommitHash: CommitHash,
+ BuildDate: BuildDate,
+ Generator: `<meta name="generator" content="Hugo ` + Version + `" />`,
+ }
}
+ return hugoInfo
}
Params map[string]interface{}
Date time.Time
Sitemap Sitemap
- hugo *HugoInfo
UrlPath
}
}
func (n *Node) Hugo() *HugoInfo {
- if n.hugo == nil {
- n.hugo = newHugoInfo()
- }
- return n.hugo
+ return getHugoInfo()
}
func (n *Node) isSameAsDescendantMenu(inme *MenuEntry, parent *MenuEntry) bool {