summaryrefslogtreecommitdiffstats
path: root/bin/templates/basic_page.mustache
blob: 1239a4a066e26a64fd28a3c42f4e7f05122d6cb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta name="viewport" content="width=device-width" />
    {{meta_refresh}}
    <link href="/static/style.css" type="text/css" rel="stylesheet" />
    <title>{{page_title}}</title>
  </head>
  <body class="wrapper">
    {{{main_navigation_html}}}
    <div class="mainbody">
      {{{main_html}}}
    </div>
  </body>
</html>