summaryrefslogtreecommitdiffstats
path: root/templates/default.html
blob: f6898ae37d1423bac13fc9cf2267f7047a587d3c (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
<!DOCTYPE html>
<html lang="en-GB">
  <head>
    <meta charset="utf-8" />
    <title>{{ page.title }}</title>
    <link rel="stylesheet" href="/style.css" />
    <link rel="icon" type="image/png" sizes="32x32" href="/images/icon32x32.png" />
    <link rel="icon" type="image/png" sizes="16x16" href="/images/icon16x16.png" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta name="description" content="{{ page.description }}" />
    <meta name="author" content="Tomasz Kramkowski <tk@the-tk.com>" />
    <meta name="keywords" content="{{ page.keywords }}" />
    {% block head %}{% endblock %}
  </head>
  <body>
    <main>
      <header>
        <nav>
          <a href="{{ site.baseurl }}/">the-tk.com</a>
          | <a href="{{ site.baseurl }}/blog.html">Blog</a>
          | <a href="{{ site.baseurl }}/projects.html">Projects</a>
        </nav>
      </header>
      <hr />
      {% block content %}{% endblock %}
      <hr />
      <footer>
        <a href="mailto:website-inquiries@the-tk.com">contact</a><a href="https://github.com/EliteTK">github</a><a href="https://the-tk.com/cgit">cgit</a><a href="https://the-tk.com/archive">ML archive</a>
      </footer>
    </main>
    <div id="copyright">
      Copyright © Tomasz Kramkowski.
      <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" src="/images/ccbysa.png" /></a><br />
      All hosted work, unless otherwise specified, is available under a
      <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a>
      International License.<br />
    </div>
  </body>
</html>