Welcome to mirror list, hosted at ThFree Co, Russian Federation.

baseof.html « _default « layouts - github.com/mavidser/hugo-rocinante.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7691dea649acb9c432b15b4ab99aabb976829d33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
  {{- partial "head.html" . -}}
  <body>
    <header>
      {{- partial "header.html" . -}}
    </header>
    <main>
      {{- block "main" . }}{{- end }}
    </main>
    <footer>
      {{- partial "footer.html" . -}}
    </footer>
    {{ $js := resources.Get "js/rocinante.js" | resources.Minify }}
    <script>
      const emailId = atob({{.Param "email" | base64Encode}});
    </script>
    <script src="{{ $js.RelPermalink }}"></script>
  </body>
</html>