<!DOCTYPE html>
<html>

<head>
  <meta charset="utf-8" />
  <title>{{#if title}}{{ title }}{{else}}Trifid{{/if}}</title>
  <link rel="stylesheet" href="/static/core/style.css" />
{{#each styles}}
  <link rel="stylesheet" href="{{ this }}" />
{{/each}}
  <link rel="shortcut icon" href="/static/core/favicon.ico" />
</head>

<body>
  {{#unless disableHeader}}
  {{{ header }}}
  {{/unless}}

  <main class="trifid-main">
    {{{ body }}}
  </main>

  {{#unless disableFooter}}
  {{{ footer }}}
  {{/unless}}

{{#each scripts}}
  <script src="{{ this }}"></script>
{{/each}}
</body>

</html>
