all repos — homestead @ 0f2304646653f75f769ff8a5057ab53b3ea8d3cc

Code for my website

themes/bear/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 %}