From 9ea795e148e3dd484509484a6dae03a8fd0c2e0a Mon Sep 17 00:00:00 2001 From: philgs Date: Mon, 5 Jan 2015 06:22:06 -0500 Subject: Lowercase variables for .Site.Params Variables under .Site.Params are accessed with all lower-case identifiers. Hugo won't find them with an upper-case first letter, regardless of how they're formatted in the site `config` file.--- layouts/partials/sidebar.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'layouts/partials') diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html index b199a6b..645b25c 100644 --- a/layouts/partials/sidebar.html +++ b/layouts/partials/sidebar.html @@ -3,7 +3,7 @@ @@ -14,6 +14,6 @@ {{end}} -

{{ with .Site.Params.Copyright }}{{.}}{{ else }}© {{.Now.Format "2006"}}. All rights reserved. {{end}}

+

{{ with .Site.Params.copyright }}{{.}}{{ else }}© {{.Now.Format "2006"}}. All rights reserved. {{end}}

-- cgit 1.4.1 From 4ce7ab945a525d94b59d1fbe2929a88b15b30430 Mon Sep 17 00:00:00 2001 From: Gio d'Amelio Date: Mon, 23 Feb 2015 20:02:12 -0800 Subject: Fetch google fonts over https --- layouts/partials/head.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'layouts/partials') diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 4ddf0fa..a9f9401 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -13,7 +13,7 @@ - + -- cgit 1.4.1 From 13774d8035eac2f01d4789cbd5a6bcdd42caabf7 Mon Sep 17 00:00:00 2001 From: Marc Jones Date: Mon, 18 May 2015 17:21:07 +0100 Subject: Corrected link to favicon image The original reference was to favicon.ico, when the provided image is .png--- layouts/partials/head.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'layouts/partials') diff --git a/layouts/partials/head.html b/layouts/partials/head.html index a9f9401..894b907 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -17,7 +17,7 @@ - + -- cgit 1.4.1 From b8dbb207935197fa7b6a3ddae30f796bbefcd320 Mon Sep 17 00:00:00 2001 From: Karl Ostendorf Date: Wed, 10 Jun 2015 15:21:13 +0200 Subject: change .BaseUrl to .BaseURL --- layouts/partials/head.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'layouts/partials') diff --git a/layouts/partials/head.html b/layouts/partials/head.html index a9f9401..776375c 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -10,9 +10,9 @@ {{ .Title }} · {{ .Site.Title }} - - - + + + -- cgit 1.4.1 From 4e4c359b9a5b97becef24ed04c5e9ec064973883 Mon Sep 17 00:00:00 2001 From: Anthony Fok Date: Thu, 18 Jun 2015 13:50:55 -0600 Subject: Add {{ .Hugo.Generator }} --- layouts/partials/head.html | 1 + theme.toml | 1 + 2 files changed, 2 insertions(+) (limited to 'layouts/partials') 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 @@ + {{ .Hugo.Generator }} 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" -- cgit 1.4.1 From 884e8edcd960bddc506f7eb4a7e89a4b2575d99a Mon Sep 17 00:00:00 2001 From: digitalcraftsman Date: Thu, 25 Jun 2015 21:54:21 +0200 Subject: Replaced .Url with .URL in sidebar.html --- layouts/partials/sidebar.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'layouts/partials') diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html index 645b25c..a197429 100644 --- a/layouts/partials/sidebar.html +++ b/layouts/partials/sidebar.html @@ -10,7 +10,7 @@ -- cgit 1.4.1 From c87ec5559f42637dc3663625da99a5d7f1dbf532 Mon Sep 17 00:00:00 2001 From: digitalcraftsman Date: Tue, 2 Jun 2015 18:58:59 +0200 Subject: Linking the title in the sidebar to home --- layouts/partials/sidebar.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'layouts/partials') diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html index a197429..4bdc33e 100644 --- a/layouts/partials/sidebar.html +++ b/layouts/partials/sidebar.html @@ -1,7 +1,7 @@ -- cgit 1.4.1