commit ef7108798bc8b4df83cc818ef4987a640eb0a885
parent 9726b8d80658c6cf3c092c21484548aba6f64a68
Author: Björn Ehrby <bjorn@ehrby.se>
Date:   Mon,  5 Jun 2023 23:47:46 +0200

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
Diffstat:
Mlayouts/partials/footer.html | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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>