hugo/hugolib/hugo.go

32 lines
512 B
Go
Raw Normal View History

package hugolib
import (
"html/template"
)
const Version = "0.13-DEV"
var (
CommitHash string
BuildDate string
)
var hugoInfo *HugoInfo
2015-01-19 01:40:34 +00:00
// HugoInfo contains information about the current Hugo environment
type HugoInfo struct {
Version string
Generator template.HTML
CommitHash string
BuildDate string
}
func init() {
hugoInfo = &HugoInfo{
Version: Version,
CommitHash: CommitHash,
BuildDate: BuildDate,
Generator: `<meta name="generator" content="Hugo ` + Version + `" />`,
}
}