{% extends "base.html" %} {% block title %}{{SITE_NAME}}: albums{% endblock %} {% block menu-highlight-albums%}class="current"{% endblock %} {% block current-album-page %}class="current"{% endblock %} {% block content %} Photo Albums {% for album in albums %} {% include "album-list-element.html" %} {% endfor %} {% ifnotequal albums.number 1 %} First {% endifnotequal %} {% if albums.has_previous %} ← Previous {% endif %} {{ albums.number }} {% if albums.has_next %} Next → {% endif %} {% ifnotequal albums.number last_page %} Last {% endifnotequal %} {% endblock %}