summaryrefslogtreecommitdiff
path: root/themes/emily_zola_theme/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/emily_zola_theme/templates/base.html')
-rw-r--r--themes/emily_zola_theme/templates/base.html43
1 files changed, 43 insertions, 0 deletions
diff --git a/themes/emily_zola_theme/templates/base.html b/themes/emily_zola_theme/templates/base.html
new file mode 100644
index 0000000..040afe3
--- /dev/null
+++ b/themes/emily_zola_theme/templates/base.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+ <meta charset="utf-8">
+ {% block title %}
+ <title>{{ config.title }}</title>
+ {% endblock %}
+
+ <link rel="shortcut icon" type="image/png" href="{{ config.extra.favicon }}">
+ <meta name="viewport" content="width=device-width,initial-scale=1">
+
+ <link id="stylesheet" rel="stylesheet" type="text/css" href="/dark.css">
+
+ <script type="text/javascript" src="/js/theme.js"></script>
+
+</head>
+
+<div class="header">
+ <div class="site_title">
+ <p><a href="/"><img src="{{ config.base_url }}{{ config.extra.icon }}" alt="{{ config.title }}"
+ width="{{ config.extra.iconsize }}" height=auto></a></p>
+ <p><a href="/">&nbsp;{{ config.title }}</a></p>
+ </div>
+ <div class="menu">
+ <a href="/post">>archives</a>
+ &nbsp;<a href="/about">>about</a>
+ </div>
+</div>
+
+<body onload="getTheme()">
+ <section class="section">
+ <div class="container">
+ {% block content %} {% endblock %}
+ </div>
+ </section>
+</body>
+
+<div class="footer">
+ <a href="/">{{ config.title }}</a>&emsp;&copy; {{ config.extra.author }}
+</div>
+
+</html>