summaryrefslogtreecommitdiffstats
path: root/layouts/_partials/head.html
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-04-05 08:41:04 +0200
committerDanilo M. <danix@danix.xyz>2026-04-05 08:41:04 +0200
commitd605b77f6255a605d5afb9cd78649b1d7e301128 (patch)
tree940538abb113b4570fb06d0c5113b091dfd33dee /layouts/_partials/head.html
parentdcf54cad8529526fd7f8d9d4b84b63ccb3fa9630 (diff)
downloaddanixxyz-theme-d605b77f6255a605d5afb9cd78649b1d7e301128.tar.gz
danixxyz-theme-d605b77f6255a605d5afb9cd78649b1d7e301128.zip
layout: create base layout, header, footer, hero, and post card partials
Diffstat (limited to 'layouts/_partials/head.html')
-rw-r--r--layouts/_partials/head.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/layouts/_partials/head.html b/layouts/_partials/head.html
index 02c2240..1a8a727 100644
--- a/layouts/_partials/head.html
+++ b/layouts/_partials/head.html
@@ -1,5 +1,8 @@
<meta charset="utf-8">
-<meta name="viewport" content="width=device-width">
-<title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}</title>
+<meta name="viewport" content="width=device-width, initial-scale=1">
+<meta name="description" content="{{ .Site.Params.description }}">
+<meta name="theme-color" content="#060b10">
+<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} | {{ .Site.Title }}{{ end }}</title>
+
{{ partialCached "head/css.html" . }}
{{ partialCached "head/js.html" . }}