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/head.html')
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/head.html')
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/head.html')
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/head.html')
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 ca2ed0b862a323e420fd90022cba6ddf0f8fd655 Mon Sep 17 00:00:00 2001
From: philgs
Date: Thu, 13 Aug 2015 11:19:02 -0400
Subject: Remove double-slashes in stylesheet URLs
---
layouts/partials/head.html | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
(limited to 'layouts/partials/head.html')
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index fba4ccc..c711dd9 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -11,9 +11,9 @@
{{ .Title }} · {{ .Site.Title }}
-
-
-
+
+
+
--
cgit 1.4.1
From d06d24a0a3a29d44b4610fdb22b368fbe9b5021e Mon Sep 17 00:00:00 2001
From: Matthew Buckett
Date: Sat, 2 Jan 2016 12:42:18 +0000
Subject: Use language from configuration.
The header should use the language supplied in the configuration rather than hardcoding to english (US).---
layouts/partials/head.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'layouts/partials/head.html')
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index c711dd9..23767d6 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -1,5 +1,5 @@
-
+
--
cgit 1.4.1
From 61243733ec7ce5f2f8fe938f6e6518f05f2e5dfa Mon Sep 17 00:00:00 2001
From: Jakub Kucharski
Date: Sun, 3 Jul 2016 18:47:14 +0200
Subject: Don't repeat title in tag on the home page
---
layouts/partials/head.html | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
(limited to 'layouts/partials/head.html')
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 23767d6..07e383a 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -8,7 +8,11 @@
- {{ .Title }} · {{ .Site.Title }}
+ {{ if .IsHome }}
+ {{ .Site.Title }}
+ {{ else }}
+ {{ .Title }} · {{ .Site.Title }}
+ {{ end }}
--
cgit 1.4.1
From 99a6d2a3727c32a49e18f39f80fd4b161127de34 Mon Sep 17 00:00:00 2001
From: Bjørn Erik Pedersen
Date: Thu, 17 Nov 2016 09:18:55 +0100
Subject: Rename RSSlink to RSSLink
The former will be deprecated and eventually removed from Hugo.
Note: Currently both of them exist in Hugo, which is the reason for the cleanup.
---
layouts/partials/head.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'layouts/partials/head.html')
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 07e383a..110c99e 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -25,5 +25,5 @@
-
+
--
cgit 1.4.1