initial import
diff --git a/templates/page.html b/templates/page.html
new file mode 100644
index 0000000..e0e9993
--- /dev/null
+++ b/templates/page.html
@@ -0,0 +1,16 @@
+{% extends "base.html" %}
+{% block title %}{{ SITENAME }} - {{ page.title }}{% endblock %}
+{% block content %}
+{% set custom_header = page.title %}
+{% include "header.html" %}
+<article>
+  <h1 id="title">
+    <a href="{{ SITEURL }}/{{ page.url }}" rel="bookmark">{{ page.title }}</a>
+  </h1>
+  {{ page.content }}
+</article>
+
+<footer>
+  <a href="{{ SITEURL }}/" class="button_accent">&larr;Back to blog</a>
+</footer>
+{% endblock %}