summaryrefslogtreecommitdiffstats
path: root/src/templates/layout-journal.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/templates/layout-journal.html')
-rw-r--r--src/templates/layout-journal.html54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/templates/layout-journal.html b/src/templates/layout-journal.html
new file mode 100644
index 0000000..83765bd
--- /dev/null
+++ b/src/templates/layout-journal.html
@@ -0,0 +1,54 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <title>{{ title }}</title>
+ <link href="../style.css" rel="stylesheet">
+ <link rel="icon" type="image/png" href="../resources/glider.png" />
+
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta name="author" content="Johannes Löthberg">
+ <link rel="me" href="https://theos.kyriasis.com/~kyrias/about.html"
+ title="Johannes Löthberg <johannes@kyriasis.com>">
+{% block head %}{% endblock %}
+</head>
+<body itemscope itemtype="http://schema.org/WebPage">
+<header>
+{% include 'nav-journal.html' %}
+ <h1>{{ header }}</h1>
+</header>
+
+{% block content %}{% endblock %}
+<footer>
+ <div id="foot-left">
+ <p id="copy">
+ © <span itemprop="copyrightYear">2014</span>
+ by <span itemprop="copyrightHolder">Johannes Löthberg</span>
+ </p>
+
+ <div id="contact-info-wrapper">
+ <p>You can find me on:</p>
+ <div id="contact-info">
+ <a rel="me" href="mailto:johannes@kyriasis.com">Email</a>
+ <a rel="me" href="https://twitter.com/kyriasis">Twitter</a>
+ <a rel="me" href="https://plus.google.com/+JohannesLothberg">Google+</a>
+ <a rel="me" href="sms:+46739525259">SMS</a>
+ </div>
+ </div>
+ </div>
+ <a id="emblem" href="http://www.catb.org/hacker-emblem/">
+ <img src="../resources/glider.png" alt="hacker emblem" />
+ </a>
+</footer>
+
+<script>
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
+ })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
+
+ ga('create', 'UA-50812915-2', 'auto');
+ ga('send', 'pageview');
+</script>
+</body>
+</html>