all repos — homestead @ 4095346abb647c40307d93b34c21805bcc0f5089

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 | reverse %}
  • {{ page.title }}
  • {% else %}
  • No posts yet
  • {% endfor %}
{% set tags = get_taxonomy(kind="tags") %} {% for post in tags.items %} #{{ post.name }}  {% endfor %}
{% endblock %}