diff --git a/config.toml b/config.toml index 98c6b34e7..601756838 100644 --- a/config.toml +++ b/config.toml @@ -7,7 +7,7 @@ footnotereturnlinkcontents = "↩" languageCode = "en-us" metaDataFormat = "yaml" title = "Hugo" -theme = "gohugoioTheme" + googleAnalytics = "UA-7131036-4" @@ -28,6 +28,12 @@ pygmentsUseClassic = false # See https://help.farbox.com/pygments.html pygmentsStyle = "trac" +[module] + [module.hugoVersion] + min = "0.56.0" + [[module.imports]] + path = "github.com/gohugoio/gohugoioTheme" + [outputs] home = [ "HTML", "RSS", "REDIR", "HEADERS" ] section = [ "HTML", "RSS"] diff --git a/go.mod b/go.mod new file mode 100644 index 000000000..084921828 --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module github.com/gohugoio/hugoDocs + +go 1.12 + +require github.com/gohugoio/gohugoioTheme v0.0.0-20190726082015-1ca3974992e8 // indirect diff --git a/go.sum b/go.sum new file mode 100644 index 000000000..0b91e0065 --- /dev/null +++ b/go.sum @@ -0,0 +1,2 @@ +github.com/gohugoio/gohugoioTheme v0.0.0-20190726082015-1ca3974992e8 h1:BrZRtV16S1vWluOQTC96nT9A1pjpl+2sX9v7rfU9ybU= +github.com/gohugoio/gohugoioTheme v0.0.0-20190726082015-1ca3974992e8/go.mod h1:kpw3SS48xZvLQGEXKu8u5XHgXkPvL8DX3oGa07+z8Bs=