all repos — min @ 1870b7482e551f224d67f5a543161dfc61fa9e98

A small but practical concatenative programming language.

site/templates/news.mustache

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
<!doctype html>
<html lang="en">
  {{> _head}}
  <body>
    {{> _menu}}
    <main class="pure-g">
      <article class="pure-u-5-5">
        <h1>News</h1>
        <p>This page lists the latest news about the min programming language.</p>
        <ul>
        {{#posts}}
          <li><a href="/{{id}}">{{date}} &mdash; {{title}}</a></li>
        {{/posts}}
        </ul>
      </article>
    </main>
    {{> _footer}}
  </body>
</html>