{% 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 album_dir.images %} {% if children %}

Photos

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