all repos — hex @ 0a95e26e8fb96053d5818af6845e360eb0a4b2cc

A tiny, minimalist, slightly-esoteric concatenative programming lannguage.

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
<!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, stack-based and slightly-esoteric programming language
  that can run on many platforms.">
  <link rel="stylesheet" href="/assets/styles.css">
  <link rel="icon" type="image/png" href="/assets/favicon.png">
</head>

<body>
  <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="/changelog">Changelog</a> |
    <a href="/about">About</a> |
    <a href="/spec">Spec</a> 
  </nav>
  {{content}}
  <footer>
    &copy; 2024 Fabio Cevasco
  </footer>
</body>

</html>