{% block content%}{% endblock %}
diff --git a/templates/page.html b/templates/page.html
index 6fc3f6e..c6f1af5 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -1,5 +1,31 @@
{% extends "index.html" %}
+{% block subtitle %}
+ {% set current_section = get_section(path=page.ancestors[1]) %}
+ {{ current_section.title }}
+{% endblock %}
+
+
{% block content %}
{{ page.content | safe }}
{% endblock %}
+
+{% block menu %}
+ {% set global_section = get_section(path="_index.md") %}
+ {% for s in global_section.subsections %}
+ {% set subsection = get_section(path=s) %}
+
+ {{ subsection.title }}
+
+ {% endfor %}
+{% endblock %}
+
+{% block nav %}
+ {% if current_section.pages %}
+
-
+ {% for post in current_section.pages %}
+
- {{ post.title }} + {% endfor %} +