-
-
-
-{% if page.extra.uses_twitter %}
-
-{% endif %}
-{% if page.extra.uses_graphviz %}
-
-{% endif %}
+ {{ page.content | safe }}
{% endblock content %}
\ No newline at end of file
diff --git a/templates/section.html b/templates/section.html
index 2f0690a..3489058 100644
--- a/templates/section.html
+++ b/templates/section.html
@@ -1,113 +1,13 @@
{% extends "base.html" %}
-{% block title %}
-{{section.title}}
-{% endblock title %}
-{% block head %}
+{# Pass data through to the base template #}
+{% block variable_wormhole %}
{{ super() }}
+{% set title = section.title %}
+{% set description = section.description %}
+{% endblock variable_wormhole %}
-{# Disable crawling if requested #}
-{% if section.extra.no_crawl %}
-
-{% endif %}
-
-
-{% if section.description %}
-
-
-{% else %}
-
-
-{% endif %}
-
-{# Handle listing blog posts nicely in search #}
-{% if section.extra.inject_blog_posts %}
-
-{% endif %}
-{% endblock head %}
-
+{# Page content #}
{% block content %}
-{% if section.extra.enable_gh_markdown %}
-
-{% endif %}
-{{section.content | safe}}
-{% if section.extra.enable_gh_markdown %}
-
-{% endif %}
-
-{# Blog posts #}
-{% if section.extra.inject_blog_posts %}
-
-
- {# Posts shall be broken down by year #}
- {% set title_year = "3000" %}
- {% for page in section.pages %}
- {% if not page.extra.hidden %}
- {% set page_year = page.date | date(format="%Y")%}
- {% if page_year != title_year %}
- {% set_global title_year = page_year %}
-
-