diff options
author | Mark Powers <mark@marks.kitchen> | 2024-11-03 21:06:15 -0600 |
---|---|---|
committer | Mark Powers <mark@marks.kitchen> | 2024-11-03 21:06:15 -0600 |
commit | e57fbfc1df92bb5f501f2e9cea975fa1283ad72d (patch) | |
tree | 39c45cbee66fe6e54f07166fe7c7596d67030004 | |
parent | dca1b48846364951447eb6d84dec6f2bae986571 (diff) |
Add opengraph, fix mobile layout
-rw-r--r-- | layouts/partials/head.html | 2 | ||||
-rw-r--r-- | static/css/common.css | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 29e9f49..4f1993a 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -41,5 +41,7 @@ <title>{{ .Title }} - {{ .Site.Title }}</title> {{ end }} + {{ template "_internal/opengraph.html" . }} + {{ block "head" . }}{{ end }} </head> diff --git a/static/css/common.css b/static/css/common.css index 8ec4016..2782a83 100644 --- a/static/css/common.css +++ b/static/css/common.css @@ -42,6 +42,10 @@ html { } } +ul { + margin-left: 1.2rem; +} + /* global */ * { |