diff options
Diffstat (limited to '_layouts/web.html')
-rw-r--r-- | _layouts/web.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/_layouts/web.html b/_layouts/web.html new file mode 100644 index 0000000..2079d24 --- /dev/null +++ b/_layouts/web.html @@ -0,0 +1,31 @@ +--- +layout: default +--- +<header> +<h1> + <a href="https://apropos.codes">apropos</a> +</h1> +<div> + <nav> + <a href="/mathematics">mathematics</a> + <a href="/linguistics">linguistics</a> + <b><a href="/computation">computation</a></b> + </nav> + <nav> + <a href="/ctf">ctf</a> + <a href="/plt">plt</a> + <b><a href="/web">web</a></b> + </nav> + <nav> + <a href="/web/css">css</a> + <a href="/web/tailwind">tailwind</a> + <a href="/web/html">html</a> + <a href="/web/htmx">htmx</a> + <a href="/web/markdown">markdown</a> + <a href="/web/networking">networking</a> + </nav> +</div> +</header> +<main> +{{ content }} +</main> |