all repos — homestead @ f8e3f6790509d33d34ed8fc89c79004dd1c331ef

Code for my website

templates/taxonomy_single.html (view raw)

{% extends "base.html" %}

{% block main %}
  
    {%- if taxonomy.term %}
      

Filtering for "{{ term.name }}"

Remove filter {%- endif %}
    {% for page in term.pages %}
  • {{ page.title }}
  • {% else %}
  • No posts yet
  • {% endfor %}
{% endblock %}