diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..80c9cf7
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,46 @@
+
+
+
+ {% include "partials/head.html" %}
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/templates/partials/head.html b/templates/partials/head.html
new file mode 100644
index 0000000..e67fd6c
--- /dev/null
+++ b/templates/partials/head.html
@@ -0,0 +1,24 @@
+{% if page %}
+ {% set page_title = page.title %}
+{% elif section %}
+ {% set page_title = section.title %}
+{% endif %}
+{% if page_title %}{{ page_title | safe }} | {% endif %}{{ config.title | safe }}
+
+
+
+
+
+{# STAGING: keep search engines out. Remove this line at production cutover. #}
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/templates/partials/navbar.html b/templates/partials/navbar.html
new file mode 100644
index 0000000..27f046e
--- /dev/null
+++ b/templates/partials/navbar.html
@@ -0,0 +1,49 @@
+