diff options
author | mms <michal@sapka.me> | 2024-06-05 23:23:39 +0200 |
---|---|---|
committer | mms <michal@sapka.me> | 2024-06-05 23:23:39 +0200 |
commit | 043eecf580663c32bd98ab0b3598592712e59205 (patch) | |
tree | 3f26a3f58588be125de4c5ad5ee85375a25c99e4 /layouts | |
parent | 66209e7dfff41ca73cdf76bd08b852b088e0b6fc (diff) |
feat: tidy up Unix History
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/partials/header/meta.html | 4 | ||||
-rw-r--r-- | layouts/unix-history/baseof.html | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/layouts/partials/header/meta.html b/layouts/partials/header/meta.html index ccd8385..8442da1 100644 --- a/layouts/partials/header/meta.html +++ b/layouts/partials/header/meta.html @@ -1,13 +1,13 @@ <meta charset="utf-8"> <title> {{- block "title" . }} - [{{ .Site.Title}}] {{ .Page.Title }} + {{ .Page.Title }} @ {{ .Site.Title}} {{- end }} </title> <meta name="viewport" content="width=device-width, initial-scale=1"> {{- $image := resources.Get "/icons/apple-touch-icon.png"}} <link rel="apple-touch-icon" sizes="180x180" href="{{ $image.Permalink }}"> - {{- $image := resources.Get "/icons/favicon-32x32.png" }} + {{- $image := resources.Get "/icons/favicon-32x32.png" }} <link rel="icon" type="image/png" sizes="32x32" href="{{ $image.Permalink }}"> {{- $image := resources.Get "/icons/favicon-16x16.png" }} <link rel="icon" type="image/png" sizes="16x16" href="{{ $image.Permalink }}"> diff --git a/layouts/unix-history/baseof.html b/layouts/unix-history/baseof.html index e9ea254..7749166 100644 --- a/layouts/unix-history/baseof.html +++ b/layouts/unix-history/baseof.html @@ -104,6 +104,11 @@ margin-top: 30px; margin-bottom: 30px; } + + .footnotes p { + margin: 0; + padding: 0; + } </style> </head> |