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

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


{% endif %} {% if album_dir.description %}
{{ album_dir.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 %}