diff --git a/templates/taxonomy_list.html b/templates/taxonomy_list.html
index 3d51872..e3814d4 100644
--- a/templates/taxonomy_list.html
+++ b/templates/taxonomy_list.html
@@ -1,4 +1,5 @@
{% extends "base.html" %}
+{% import "macros/post.html" as post %}
{% import "macros/taxonomy.html" as macros %}
{% block main %}
@@ -9,8 +10,16 @@
{%- set num_terms = terms | length %}
{%- for term in terms %}
- {%- set page_count = [term.page_count ~ " post", term.page_count | pluralize] | join %}
- - {{ macros::prettify(term=term.name) }} ({{ page_count }})
+ {# {%- set page_count = [term.page_count ~ " post", term.page_count | pluralize] | join %} #}
+ -
+
+
+ {% for page in term.pages%}
+ - {{post::page_link(path=page.relative_path)}}
+ {%- endfor %}
+
+
+
{%- endfor %}