{% extends "base.html" %} {% block content %} {% if not album_dir.is_root %}

Home {% for href, name in breadcrumbs %} / {{name}} {% endfor %} / {{album_dir.path.name}}


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

Albums

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

Photos

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