{% extends "base.html" %} {% block title %}edgarroman.com photo site{% endblock %} {% block additional_header_scripts %} {%endblock%} {% block content %}

{{ album.title }}

{{ album.description }}

{% for photo in album.photo_set.all %}
{% include "photo-list-element.html" %}
{% if forloop.counter|divisibleby:"3" %}
{% endif %} {% endfor %}
{% endblock %}