summaryrefslogtreecommitdiff
path: root/layouts/_default/baseof.html
blob: 58d2aa3a8b532553993b78d71a99ac096c541904 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>{{ block "title" . }}
      {{ .Site.Title }}
      {{ end }}</TITLE>
    <link rel='stylesheet' type='text/css' href='/style.css'>
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    {{- $image := resources.Get "/icons/apple-touch-icon.png"}}
    <link rel="apple-touch-icon" sizes="180x180" href="{{ $image.Permalink }}">
    {{- $image := resources.Get "/icons/favicon-32x32.png" }}
    <link rel="icon" type="image/png" sizes="32x32" href="{{ $image.Permalink }}">
    {{- $image := resources.Get "/icons/favicon-16x16.png" }}
    <link rel="icon" type="image/png" sizes="16x16" href="{{ $image.Permalink }}">
    <meta name="description" content="{{ .Params.Abstract | default .Site.Params.DefaultDescription}}"/>

    <meta property="og:title" content="{{ .Page.Title }}" />
    <meta property="og:type" content="website" />
    <meta property="og:url" content="{{ .Permalink }}" />
    {{- $imageUrl := default "logo.png" .Params.image }}
    {{- $image := resources.Get $imageUrl }}
    <meta property="og:image" content="{{ $image.Permalink }}" />
    <meta property="og:description" content="{{ .Params.Abstract | default .Site.Params.DefaultDescription}}"/>

    <meta name="twitter:title" content="{{ .Page.Title }}">
    <meta name="twitter:image" content="{{ $image.Permalink }}">
    <meta name="twitter:card" content="summary_large_image">
    <meta name="twitter:description" content="{{ .Params.Abstract | default .Site.Params.DefaultDescription}}" />

    <link rel="canonical" href="{{ .Permalink }}">
    <link rel='alternate' type='application/rss+xml' title="{{ .Site.Title }} RSS" href='/index.xml'>
    <meta name="robots" content="index, follow">
    {{ if isset .Params "tags" }}<meta name="keywords" content="{{ with .Params.tags }}{{ delimit . ", " }}{{ end }}">{{end}}

    <script defer data-api="/api/event" data-domain="michal.sapka.me" src="/js/script.js"></script>
  </head>
  <body>
    {{ block "header" . }}
    <nav id="topnav">
      <div>
        <a href="/">Home</a>
        <a href="/about">About</a>
        <a href="https://memes.sapka.me">Memes</a>
        <a href="https://git.sapka.me">Git</a>
        <a href="/index.xml">RSS</a>
      </div>
    </nav>
    <header>
      <div id="logo-space">
        <a href="/">
    {{ $image := resources.Get "logo.png" }}
    {{ $image := $image.Resize "x160" }}
          <div id="logo">
                  <img alt="logo" src="{{ $image.Permalink }}" width={{$image.Width}} height={{$image.Height}}/>
          </div>
          <h1>{{ .Site.Title }}</h1>
        </a>
      </div>
    </header>
    {{ end }}
    <main>
    {{ block "page-title" . }}
      <h2> {{ .Page.Title }}</h2>
    {{ end }}
    {{ block "main" . }}
    {{ end }}
    
    {{ block "pagination" . }}
    {{ end }}

    {{ block "FOOTER" . }}
    </main>
    <footer>
    <div>
      <a href="https://git.sapka.me/michal-sapka-me.git/" target="_blank">Source code is available</a>. Theme is temporary. <a href="https://plausible.io/michal.sapka.me">Statistics are public</a>. Only glory of Satan is eternal.
      <BR><BR>
      
      <a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/80x15.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
    </div>

    </footer>
    {{ end }}
  </body>
</html>