all repos — min @ 1870b7482e551f224d67f5a543161dfc61fa9e98

A small but practical concatenative programming language.

site/templates/post.mustache

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
<!doctype html>
<html lang="en">
  {{> _head}}
  <body>
    {{> _menu}}
    <main class="pure-g">
      <article class="pure-u-5-5">
        <h1>{{title}}</h1>
        <p>Published on: <time datetime="{{date}}">{{date}}</time></p>
        {{{contents}}}
      </article>
    </main>
    {{> _footer}}
  </body>
</html>