{% extends "base.html" %} {% block content %} {% if root_path %}

{% for crumb in breadcrumbs %} {{crumb.name}} / {% endfor %} {{name}}


{% endif %} {% if description %}
{{ description | safe }}
{% endif %} {% if children %}

Albums

{% for child in children %}
{{child.name}}
{% endfor %}
{% endif %} {% if images %} {% if children %}

Photos

{% endif %}
{% for image in images %}
{% endfor %}
{% endif %} {% endblock %}