summaryrefslogtreecommitdiff
path: root/themes/_includes/layout
diff options
context:
space:
mode:
Diffstat (limited to 'themes/_includes/layout')
-rw-r--r--themes/_includes/layout/footer.html8
-rw-r--r--themes/_includes/layout/header.html6
-rw-r--r--themes/_includes/layout/navigation.html6
3 files changed, 20 insertions, 0 deletions
diff --git a/themes/_includes/layout/footer.html b/themes/_includes/layout/footer.html
new file mode 100644
index 0000000..bd27826
--- /dev/null
+++ b/themes/_includes/layout/footer.html
@@ -0,0 +1,8 @@
+<footer class="site-footer">
+ <nav>
+ <a href="/impressum.html">Impressum</a>
+ <a href="/datenschutz.html">Datenschutz</a>
+ </nav>
+
+ <p>E-Mail: <a href="mailto:belka@caraus.de">belka@caraus.de</a></p>
+</footer>
diff --git a/themes/_includes/layout/header.html b/themes/_includes/layout/header.html
new file mode 100644
index 0000000..d5b7a76
--- /dev/null
+++ b/themes/_includes/layout/header.html
@@ -0,0 +1,6 @@
+<header class="site-header">
+ <a class="site-header-wrapper" href="/">
+ <span class="site-subtitle">Über Technik und Philosophie</span>
+ <span class="site-title">Mein Tagebuch</span>
+ </a>
+</header>
diff --git a/themes/_includes/layout/navigation.html b/themes/_includes/layout/navigation.html
new file mode 100644
index 0000000..7f46bd8
--- /dev/null
+++ b/themes/_includes/layout/navigation.html
@@ -0,0 +1,6 @@
+<nav class="site-navigation" role="navigation">
+ <a href="/"$if(active-blog)$ class="active"$endif$>Home</a>
+ $for(categories)$
+ <a class="$body$" href="$url$">$title$</a>
+ $endfor$
+</nav>