{% extends layout_template %} {% block title %}{{ folder.title }}{% if site.title %} - {{ site.title }}{% endif %}{% endblock %} {% block content %} {% block breadcrumbs %} {% if breadcrumbs and breadcrumbs|length > 1 %} {% include "components/breadcrumbs.html" %} {% endif %} {% endblock %}
{% block before_heading %}{% endblock %} {% block heading %}

{{ folder.title }}

{% endblock %} {% block after_heading %}{% endblock %} {% if folder.custom_content %}
{{ folder.custom_content | safe }}
{% endif %} {% if folder.children %} {% set has_subtitle = folder.children | selectattr('subtitle') | list | length > 0 %}
{% if has_subtitle %}{% endif %} {% for child in folder.children %} {% if has_subtitle %}{% endif %} {% endfor %}
TitleSubtitleModified Tags
{% if child.is_folder %} {{ child.title }} {% else %} {{ child.title }} {% endif %} {{ child.subtitle }}{{ child.modified | format_datetime }} {% if child.tags %}
{% for tag in child.tags %} {% set tag_slug = normalize_tag(tag) %} {% if site.tag_index %} {{ tag.lstrip('#') }} {% else %} {{ tag.lstrip('#') }} {% endif %} {% endfor %}
{% endif %}
{% endif %}
{% endblock %}