diff --git a/templates/blog.html b/templates/blog.html
index eeeaa7c..009f200 100644
--- a/templates/blog.html
+++ b/templates/blog.html
@@ -4,15 +4,21 @@
{{ section.title }}
+
+sort by tags.
+
{% for page in section.pages %}
-
- {{ page.title }} - by {{ page.authors }},
- {{ page.date }}
+ {{ page.title }} - by {{ page.authors }}
{{ page.description }}
+
+ written: {{ page.date }}
+
+ tags: {{ page.taxonomies.tags }}
{% endfor %}
diff --git a/templates/tags/list.html b/templates/tags/list.html
index 070014e..d21e608 100644
--- a/templates/tags/list.html
+++ b/templates/tags/list.html
@@ -1,8 +1,21 @@
{% extends "base.html" %}
-{% if page.taxonomies.tags %}
-tags:
-{% for tag in page.taxonomies.tags %}
- {{ tag }}
-{% endfor %}
-{% endif %}
+{%- block title -%}
+{{ title_macros::title(page_title="Tags", main_title=config.title) }}
+{%- endblock -%}
+
+{% block content %}
+
+{% endblock content %}
diff --git a/templates/tags/single.html b/templates/tags/single.html
index 8cf6fb1..fbea463 100644
--- a/templates/tags/single.html
+++ b/templates/tags/single.html
@@ -1,11 +1,6 @@
{% extends "base.html" %}
{% block content %}
-
- {% block title %}
- {{ config.title }} · tags · {{ term.name }}
- {% endblock title %}
-
{{ term.name }}
@@ -15,15 +10,13 @@
{% for page in term.pages | sort(attribute="date") | reverse %}
-
- {% if page.date %}
-
-
-
- {% endif %}
-
- {{ page.description }}
+ {{ page.title }} - by {{ page.authors }}
+
+ {{ page.description }}
+
+ written: {{ page.date }}
+
+ tags: {{ page.taxonomies.tags }}
{% endfor %}