diff options
author | JJ | 2023-11-24 00:28:52 +0000 |
---|---|---|
committer | JJ | 2023-11-24 00:28:52 +0000 |
commit | 426d431d03599b65dee1ddffd8923098cbaa79b0 (patch) | |
tree | 5b5ad794c2e260bdf523e90c9e18d5ff53b8e212 /_layouts | |
parent | fa8bb975614b5da3eb358598a1fa379911900f0d (diff) |
meow
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/default.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..fbec88d --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<html> +<head> + <title>Wiki</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"/> +</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> +</body> +</html> |