diff --git a/templates/section.html b/templates/section.html
index bf1bd79..a8fcda0 100644
--- a/templates/section.html
+++ b/templates/section.html
@@ -3,19 +3,19 @@
{% block content %}
- {{ page.title }}
+ {{ section.title }}
{% if paginator %}
{% set pages = paginator.pages %}
{% else %}
- {% set pages = term.pages %}
+ {% set pages = section.pages %}
{% endif %}
-
-
-
-
-
-
-
-
- {% if extra.author.name and extra.author.name %}
- {{ extra.author.name }}
-
- {% else %}
- {{ config.extra.default_author.name }}
-
- {% endif %}
-
-
-
-
-
- {% if page.taxonomies.categories %}
-
- Categories:
- {% for category in page.taxonomies.categories %}
-
-
- {{category}}
-
- {% endfor %}
-
- {% endif %}
-
-
- {% if page.taxonomies.tags %}
-
- Tags:
- {% for tag in page.taxonomies.tags %}
-
-
- {{tag}}
-
- {% endfor %}
-
- {% endif %}
-
-
- {{ page.content | safe }}
+ {{ section.content | safe }}