1{% extends "index.html" %} 2 3{% block main_content %} 4<h2>{{ taxonomy.name }}</h2> 5<section> 6 <ul> 7 {% for term in terms %} 8 <li><a href="{{ get_taxonomy_url(kind=taxonomy.name, name=term.name) }}">{{ term.name }}</a></li> 9 {% endfor %} 10 </ul> 11</section> 12{% endblock main_content %}