web/templates/page.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
<!DOCTYPE html> <html lang="en"> <head> <title>hex programming language - {{title}}</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1,user-scalable=0"> <meta name="author" content="Fabio Cevasco"> <meta name="description" content="A tiny, minimalist, concatenative, slightly-esoteric programming language"> <link rel="stylesheet" href="/assets/styles.css"> <link rel="icon" type="image/png" href="/assets/favicon.png"> </head> <body> <a name="top"></a> <header> <pre> _*_ _ / \<h1><a href="/">hex</a></h1>\* programming language *\_/_/_/ * </pre> </header> <nav> <a href="/get">/get</a> <a href="/learn">/learn</a> <a href="/play">/play</a> <a href="/spec">/spec</a> </nav> {{content}} <footer> <nav> <a href="/changelog">/changelog</a> <a href="/about">/about</a> </nav> © 2024 Fabio Cevasco </footer> </body> </html> |