summaryrefslogtreecommitdiff
path: root/templates/home.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/home.html')
-rw-r--r--templates/home.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/home.html b/templates/home.html
new file mode 100644
index 0000000..6fb143b
--- /dev/null
+++ b/templates/home.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta charset="utf-8">
+<title>{% block title %}{{ config.title }}{% endblock title %}</title>
+<style>{{ load_data(path="templates/main.css") }}</style>
+<link rel="icon" href="data:,">
+</head>
+<body>
+<div class="nav">
+<div class="navl"><a href="/">PREFETCH</a></div>
+<div class="navr">
+<a href="/blog/">blog</a>&emsp;<a href="/code/">code</a>
+</div>
+</div>
+<hr>
+<img src="/logo256.gif" style="float:left;margin-right:16px;border:2px solid #666">
+{% block content %}{{ section.content | safe }}{% endblock content %}
+<hr>
+&copy; &quot;Prefetch&quot;. Licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a>.
+</body>
+</html>