diff options
Diffstat (limited to '_layouts/computation.html')
-rw-r--r-- | _layouts/computation.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/_layouts/computation.html b/_layouts/computation.html new file mode 100644 index 0000000..ec3328d --- /dev/null +++ b/_layouts/computation.html @@ -0,0 +1,35 @@ +--- +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> + <a href="/ctf">ctf</a> + </nav> + <nav> + <a href="/syntax">syntax</a> + <a href="/semantics">semantics</a> + <a href="/compilers">compilers</a> + <br> + <a href="/types">types</a> + <a href="/modules">modules</a> + <a href="/monads">monads</a> + <a href="/effects">effects</a> + <a href="/continuations">continuations</a> + <br> + <a href="/lambda-calculus">lambda calculus</a> + <a href="/memory-management">memory management</a> + <a href="/networking">networking</a> + <a href="/paradigms">paradigms</a> + </nav> +</div> +</header> +<main> +{{ content }} +</main> |