summaryrefslogtreecommitdiffstats
path: root/templates/default.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/default.html')
-rw-r--r--templates/default.html46
1 files changed, 46 insertions, 0 deletions
diff --git a/templates/default.html b/templates/default.html
new file mode 100644
index 0000000..337cb20
--- /dev/null
+++ b/templates/default.html
@@ -0,0 +1,46 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ {% block head %}
+ <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 charset="utf-8" />
+ <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 }}" />
+ {% 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>
+ • <a href="http://www.catb.org/hacker-emblem/"><img class="icon" src="/images/glider-yellow.png" alt="Hacker Emblem" /></a>
+ • <a href="https://www.eff.org/"><img class="icon" src="/images/EFF.png" alt="EFF Logo" /></a>
+ • <a href="https://www.fsf.org/"><img class="icon" src="/images/GNU.png" alt="GNU Logo" /></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>