aboutsummaryrefslogtreecommitdiff
path: root/www/layouts/_default/baseof.html
blob: 621aea152f76cbb7660caa7a19e3692893f2af2e (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <link rel="icon" href="/favicon.ico" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>{{ block "title" . }}
      {{ .Site.Title }}
    {{ end }}</title>
    {{ partial "js.html" "res/js/color-scheme.ts" }}
    {{ partial "css-res.html" (partial "highlight.html" dict) }}
    {{ partial "css.html" "res/css/base.css" }}
    {{ block "head" . }}
    {{ end }}
    {{ range .Params.css }}
      {{ partial "css.html" (printf "res/css/%s.css" .) }}
    {{ end }}
  </head>
  <body>
    <div id="slogan">
      <span>🙃The world is full of pain, but we can fix it with love!</span>
    </div>
    {{ block "pre-article" .}}
    {{ end }}
    <article id="main-article">
      {{ block "content" . }}
      {{ end }}
      <hr/>
      <footer class="mono-link">
        <p id="license">
          <small>This work is licensed under
            <a rel="license noopener noreferrer"
              href="https://creativecommons.org/licenses/by-nc/4.0/"
              target="_blank">
              <span id="license-text">CC BY-NC 4.0</span>
              <span id="license-img-container">
                <img src="https://mirrors.creativecommons.org/presskit/icons/cc.svg"/>
                <img src="https://mirrors.creativecommons.org/presskit/icons/by.svg"/>
                <img src="https://mirrors.creativecommons.org/presskit/icons/nc.svg"/>
              </span>
            </a>
          </small>
        </p>
      </footer>
  </article>

  {{ block "scripts" . }}
  {{ end }}
</body>
</html>