diff options
author | wires <wires@noreply.wires.systems> | 2025-07-29 14:37:32 -0400 |
---|---|---|
committer | wires <wires@noreply.wires.systems> | 2025-07-29 14:37:32 -0400 |
commit | 54e4a732484c120d9f95fe3451da932859cf7473 (patch) | |
tree | 8eadbeaed6fbac095f602740f3abfc8b76a860fe /layouts/partials/head.html | |
parent | add draft reading list page (diff) | |
download | blog-54e4a732484c120d9f95fe3451da932859cf7473.tar.gz |
fix stuff for new version of hugo
Diffstat (limited to 'layouts/partials/head.html')
-rw-r--r-- | layouts/partials/head.html | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html deleted file mode 100644 index 2fe366d..0000000 --- a/layouts/partials/head.html +++ /dev/null @@ -1,21 +0,0 @@ -<meta charset="utf-8"/> -<meta name="viewport" content="width=device-width, initial-scale=1.0"> -{{ with (or .Description .Site.Params.description) }} -<meta name="description" content="{{ . }}"/> -{{ end }} -{{ with .Keywords }}<meta name="keywords" content="{{ delimit . ", " }}"/>{{ end }} -<link rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/"/> -<link rel="canonical" href="{{ .Permalink }}"/> -{{ range slice "style.css" "syntax.css"}} -{{- with resources.Get . }} - {{- if eq hugo.Environment "development" }} - <link rel="stylesheet" href="{{ .RelPermalink }}"> - {{- else }} - {{- with . | minify | fingerprint }} - <link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous"> - {{- end }} - {{- end }} -{{- end }} -{{ end }} -<title>{{ printf "%s | %s" .Title site.Title }}</title> - |