Fix the Hugo.Generator tag so it can be used

This commit is contained in:
bep 2015-01-19 08:26:06 +01:00
parent 56eead2ade
commit 9712d06b36

View file

@ -1,5 +1,9 @@
package hugolib package hugolib
import (
"html/template"
)
const Version = "0.13-DEV" const Version = "0.13-DEV"
var ( var (
@ -12,7 +16,7 @@ var hugoInfo *HugoInfo
// HugoInfo contains information about the current Hugo environment // HugoInfo contains information about the current Hugo environment
type HugoInfo struct { type HugoInfo struct {
Version string Version string
Generator string Generator template.HTML
CommitHash string CommitHash string
BuildDate string BuildDate string
} }