diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-25 11:24:52 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-25 11:24:52 +0100 |
commit | 3f63afa14b364003aef9ca8dd83ce0bd37102ab3 (patch) | |
tree | b3d77842360282df6019630f3795e033727d9c99 /_layouts | |
parent | 89516cc7bc16f0546f4fea99238d74f87fb84bc9 (diff) |
fix dark mode
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/default.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index ef50700..9c2204f 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -3,7 +3,7 @@ <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <link rel="stylesheet" href="/style.css"> + <meta name="color-scheme" content="light dark"> <meta property='og:site_name' content='{{ page.date }}' /> <meta property='og:title' content='{{ page.title }}' /> <meta property='og:description' content='{{ page.subtitle }}' /> @@ -12,6 +12,7 @@ {% else %} <title>{{ site.title }}</title> {% endif %} + <link rel="stylesheet" href="/style.css"> </head> <body> <header class="invert plainlink"> |