summaryrefslogtreecommitdiffstats
path: root/bin/templates/basic_page.mustache
blob: 97a60d06e8b67627ae4e76a38319661456567745 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!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">
	<header class="head">
      {{{main_navigation_html}}}
	</header>
    <div class="mainbody">
	  <h2>{{page_title}}</h2>
      {{{main_html}}}
    </div>
  </body>
</html>