diff options
author | Tomasz Kramkowski <tk@the-tk.com> | 2018-07-18 23:46:06 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tk@the-tk.com> | 2018-07-18 23:55:42 +0100 |
commit | c34ae6fed8503c6f8b27b4bd55cf26bb3f47ad23 (patch) | |
tree | a50e1f923f5101846e440fba4b076b14d8ac6b4b /templates/default.html | |
download | the-tk.com-c34ae6fed8503c6f8b27b4bd55cf26bb3f47ad23.tar.gz the-tk.com-c34ae6fed8503c6f8b27b4bd55cf26bb3f47ad23.tar.xz the-tk.com-c34ae6fed8503c6f8b27b4bd55cf26bb3f47ad23.zip |
init commit
Diffstat (limited to 'templates/default.html')
-rw-r--r-- | templates/default.html | 46 |
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> |