From ef7108798bc8b4df83cc818ef4987a640eb0a885 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ehrby?= <bjorn@ehrby.se> Date: Mon, 5 Jun 2023 23:47:46 +0200 Subject: [PATCH] Fix non-https link to gohugo.io Fixes the non-secure link to gohugo.io, which sometimes causes security suites to present a warning about non-secure external links --- layouts/partials/footer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index 0eb1903..02ecd25 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -5,7 +5,7 @@ <span>{{ $.Site.Copyright | safeHTML }}</span> {{ else }} <div class="copyright"> - <span>© {{ now.Year }} Powered by <a href="http://gohugo.io">Hugo</a></span> + <span>© {{ now.Year }} Powered by <a href="https://gohugo.io">Hugo</a></span> {{ end }} <span>:: <a href="https://github.com/panr/hugo-theme-terminal" target="_blank">Theme</a> made by <a href="https://github.com/panr" target="_blank">panr</a></span> </div>