all repos — homestead @ 1e6e592bbfc3c01ac6039742357bd07ae9da93dc

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 %}