diff options
-rw-r--r-- | layouts/brain-rot/baseof.html | 5 | ||||
-rw-r--r-- | layouts/partials/header/meta.html | 2 | ||||
-rw-r--r-- | themes/sapka-2024/layouts/_default/baseof.html | 8 |
3 files changed, 8 insertions, 7 deletions
diff --git a/layouts/brain-rot/baseof.html b/layouts/brain-rot/baseof.html index 15f96d78..0810ace7 100644 --- a/layouts/brain-rot/baseof.html +++ b/layouts/brain-rot/baseof.html @@ -1,12 +1,13 @@ <!DOCTYPE html> <html lang="en"> + <head> <meta name="viewport" content="width=device-width, initial-scale=1"> {{ partial "header/meta" . }} <style> :root { --content-bg: #fff; --highlight-color: #978b27; - --text-color: 000; + --text-color: #000; } html { height:100%; @@ -84,7 +85,7 @@ } article figure { - text-align: enter; + text-align: center; margin: 0; max-width: 100%; font-size: 0.8em; diff --git a/layouts/partials/header/meta.html b/layouts/partials/header/meta.html index 353553ca..ccd8385e 100644 --- a/layouts/partials/header/meta.html +++ b/layouts/partials/header/meta.html @@ -1,4 +1,3 @@ -<head> <meta charset="utf-8"> <title> {{- block "title" . }} @@ -33,4 +32,3 @@ <link href="https://github.com/michalsapka" rel="me"> <link rel="webmention" href="https://webmention.io/d-s.sh/webmention"> <link rel="pingback" href="https://webmention.io/d-s.sh/xmlrpc"> -</head> diff --git a/themes/sapka-2024/layouts/_default/baseof.html b/themes/sapka-2024/layouts/_default/baseof.html index 167aabfe..355fa36b 100644 --- a/themes/sapka-2024/layouts/_default/baseof.html +++ b/themes/sapka-2024/layouts/_default/baseof.html @@ -1,8 +1,10 @@ <!DOCTYPE html> <html lang="en"> - {{ partial "header/meta" . }} - <link rel='stylesheet' type='text/css' href='/style.css?v=4.0'> - + <head> + {{ partial "header/meta" . }} + <link rel='stylesheet' type='text/css' href='/style.css?v=4.0'> + </head> + {{ $section_class := "mms"}} {{ if in .Page.Params.categories "star-trek" }} {{ $section_class = "star-trek" }} |