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:
56eead2
)
Fix the Hugo.Generator tag so it can be used
author
bep
<bjorn.erik.pedersen@gmail.com>
Mon, 19 Jan 2015 07:26:06 +0000
(08:26 +0100)
committer
bep
<bjorn.erik.pedersen@gmail.com>
Mon, 19 Jan 2015 07:26:06 +0000
(08:26 +0100)
hugolib/hugo.go
patch
|
blob
|
history
diff --git
a/hugolib/hugo.go
b/hugolib/hugo.go
index b90373b3c3721883c12e66d473cd294d1576d2ec..011f7cad8095592109d45c9b5242b6c7e3d615d0 100644
(file)
--- a/
hugolib/hugo.go
+++ b/
hugolib/hugo.go
@@
-1,5
+1,9
@@
package hugolib
+import (
+ "html/template"
+)
+
const Version = "0.13-DEV"
var (
@@
-12,7
+16,7
@@
var hugoInfo *HugoInfo
// HugoInfo contains information about the current Hugo environment
type HugoInfo struct {
Version string
- Generator
string
+ Generator
template.HTML
CommitHash string
BuildDate string
}