all repos — hastysite @ 88ac2a5aa0499ead1e0074e3f166559d94ac67e3

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>
        <h1>{{title}}</h1>
        {{{contents}}}
      </article>
    </main>
    {{> _footer}}
  </body>
</html>