From 72d4bdf48847063728e0f90084625ca432c22bb5 Mon Sep 17 00:00:00 2001
From: Matt Smith
Date: Tue, 7 Aug 2018 21:11:34 +0100
Subject: Fix for mixed insecure content
---
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 66a5d46..1f7b072 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -1,7 +1,7 @@
-
+
{{ .Hugo.Generator }}
--
cgit 1.4.1
From 9bb31d6aedb7061c87e95d82c0148d3578d0f202 Mon Sep 17 00:00:00 2001
From: Sorin Davidoi
Date: Mon, 27 Aug 2018 21:24:48 +0200
Subject: fix(partials/head): Allow zooming
Disabling zooming is problematic for people with low vision (https://dequeuniversity.com/rules/axe/3.0/meta-viewport).---
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 1f7b072..ab68c44 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -6,7 +6,7 @@
{{ .Hugo.Generator }}
-
+
{{ if .IsHome -}}
{{ .Site.Title }}
--
cgit 1.4.1
From e36f5799b396ecf7a665b330da8cac5b0b6e2891 Mon Sep 17 00:00:00 2001
From: z0li
Date: Sat, 27 Apr 2019 17:11:18 +0200
Subject: Removed deprecated .Hugo and .RSSLink
---
layouts/partials/head.html | 8 +++++---
theme.toml | 2 +-
2 files changed, 6 insertions(+), 4 deletions(-)
(limited to 'layouts/partials/head.html')
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index ab68c44..30ff316 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -3,7 +3,7 @@
- {{ .Hugo.Generator }}
+ {{ hugo.Generator }}
@@ -25,8 +25,10 @@
-
-
+
+ {{ range .AlternativeOutputFormats -}}
+ {{ printf `` .Permalink .Rel .MediaType.Type $.Site.Title | safeHTML }}
+ {{ end -}}
{{ partial "hook_head_end.html" . }}
diff --git a/theme.toml b/theme.toml
index 4703ca5..a6cdeae 100644
--- a/theme.toml
+++ b/theme.toml
@@ -4,7 +4,7 @@ licenselink = "https://github.com/spf13/hyde/blob/master/LICENSE.md"
description = "An elegant open source and mobile first theme"
tags = ["blog", "company"]
features = ["blog", "themes", "disqus"]
-min_version = 0.21
+min_version = 0.53
[author]
name = "spf13"
--
cgit 1.4.1