all repos — homestead @ b95136c7d0647c1544ab9ff0408dfe2c9ac06845

Code for my website

templates/section.html (view raw)

{% extends "base.html" %}

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

Filtering for "{{ section.title }}"

Remove filter {%- endif %}
    {% for page in section.pages %}
  • {{ page.title }}
  • {% else %}
  • No posts yet
  • {% endfor %}
{% set tags = get_taxonomy(kind="tags") %} {% for post in tags.items %} #{{ post.name }}  {% endfor %}
{% endblock %}