all repos — hastysite @ 7ef715fdec8b1cd50d0cf14e1e24721cae8711ce

A high-performance static site generator.

site/templates/page.mustache

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
<!doctype html>
<html lang="en">
  {{> _head}}
  <body>
    {{> _header}}
    <main>
      <article id="page-{{id}}">
        <h1>{{title}}</h1>
        {{{contents}}}
      </article>
    </main>
    {{> _footer}}
  </body>
</html>