diff options
Diffstat (limited to '_layouts/default.html')
-rw-r--r-- | _layouts/default.html | 26 |
1 files changed, 6 insertions, 20 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index fbec88d..4583528 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,31 +1,17 @@ <!DOCTYPE html> -<html> +<html lang="en"> <head> - <title>Wiki</title> + <title>{{ page.title }}</title> <meta charset="utf-8"/> <meta name="viewport" content="width=device-width"/> <link rel="icon" type="image/jpg" href="https://apropos.codes/assets/light.png"/> <link rel="stylesheet" href="https://apropos.codes/css/style.css"/> <link rel="stylesheet" href="https://apropos.codes/writeups/css/style.css"/> + <style> + header { padding-bottom: 1em; } + </style> </head> <body> - <header> - <h1> - <a href="https://apropos.codes">apropos</a> - </h1> - <nav> - <a href="https://apropos.codes/about">about</a> - <a href="https://apropos.codes/resume">resume</a> - <a href="https://apropos.codes/notes">notes</a> - <a href="https://apropos.codes/posts">posts</a> - <a href="https://apropos.codes/writeups">writeups</a> - </nav> - </header> - <main> - {{ content }} - </main> -<footer> - <span><img src="assets/copyleft.svg" width="12" height="12" title="https://en.wikipedia.org/wiki/Criticism_of_copyright" /> 2020-2023 </span> -</footer> +{{ content }} </body> </html> |