summaryrefslogtreecommitdiff
path: root/site/themes/sine/layouts/_default/baseof.html
blob: 89f10a83e7390f764b04431f333441ddf1609e60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html data-theme="dark">
  <head>
    {{- partial "head.html" . -}}
  </head>
  <body>

    <canvas id="background"></canvas>

    <div id="main">
      {{- partial "nav.html" . -}}
      <div id="content">
        {{- block "main" . }}{{- end }}
        <footer>
          {{- partial "footer.html" . -}}
        </footer>
      </div>
    </div>

    <!-- Background -->
    <script id="background-config" type="application/json">
      {{ site.Params.background | jsonify | safeJS }}
    </script>
    <script src="{{ "/js/background.js" | relURL }}"></script>

    <!-- Theme Switcher -->
    <script src="{{ "/js/switch-theme.js" | relURL }}"></script>

  <body>
</html>