diff options
author | JJ | 2024-07-26 06:01:06 +0000 |
---|---|---|
committer | JJ | 2024-07-26 06:52:25 +0000 |
commit | abbe9f4cdb9f08549c96b3188605db683c17fd27 (patch) | |
tree | 7ff7a6c85abf4ef8a5a9809462f71d8e9017fc85 /_templates/web.html | |
parent | 885dac2e13d0357b154c75dacb3810fc5b1fb696 (diff) |
add wiki templates
Diffstat (limited to '_templates/web.html')
-rw-r--r-- | _templates/web.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/_templates/web.html b/_templates/web.html new file mode 100644 index 0000000..2446981 --- /dev/null +++ b/_templates/web.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"/> + <meta name="viewport" content="width=device-width"/> + <link rel="icon" type="image/jpg" href="/assets/light.png"/> + <link rel="stylesheet" href="/css/style.css"/> + <title> $title$ </title> +</head> +<body> +<header> +<h1> + <a href="https://toki.la">apropos</a> +</h1> +<div> + <nav> + <a href="/wiki/mathematics">mathematics</a> + <a href="/wiki/linguistics">linguistics</a> + <b><a href="/wiki/computation">computation</a></b> + </nav> + <nav> + <a href="/wiki/ctf">ctf</a> + <a href="/wiki/plt">plt</a> + <a href="/wiki/tech">tech</a> + <b><a href="/wiki/web">web</a></b> + </nav> +</div> +</header> +<main> +$body$ +</main> +</body> +</html> |