diff options
author | digitalcraftsman | 2015-07-13 23:24:18 +0200 |
---|---|---|
committer | digitalcraftsman | 2015-07-13 23:24:18 +0200 |
commit | fb2045b770e00f178e8018eea1776a3c560f50e8 (patch) | |
tree | dca3b4bb8ec8ec4440848e263e8a68dc74e677eb | |
parent | 1a7140a4d7fd4b5834178c721fdb636e96db2dd6 (diff) | |
parent | 4e4c359b9a5b97becef24ed04c5e9ec064973883 (diff) | |
download | hyde-fb2045b770e00f178e8018eea1776a3c560f50e8.tar.lz hyde-fb2045b770e00f178e8018eea1776a3c560f50e8.tar.zst hyde-fb2045b770e00f178e8018eea1776a3c560f50e8.zip |
Merge pull request #18 from anthonyfok/add-hugo-generator
Add {{ .Hugo.Generator }}
-rw-r--r-- | layouts/partials/head.html | 1 | ||||
-rw-r--r-- | theme.toml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html index a9f9401..3579454 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -3,6 +3,7 @@ <head> <link href="http://gmpg.org/xfn/11" rel="profile"> <meta http-equiv="content-type" content="text/html; charset=utf-8"> + {{ .Hugo.Generator }} <!-- Enable responsiveness on mobile devices--> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1"> diff --git a/theme.toml b/theme.toml index f4f238e..204cccc 100644 --- a/theme.toml +++ b/theme.toml @@ -3,6 +3,7 @@ license = "MIT" description = "An elegant open source and mobile first theme" tags = ["blog", "company"] features = ["blog", ] +min_version = 0.13 [author] name = "spf13" |