{% extends "photos/base.html" %} {# {% load markup %} #} {% block path %}photos{% endblock %} {% block title %}Photo Galleries{% endblock %} {% block content %} {% if object_list %}
{% for item in object_list %}

  {{ item.title }}





{% endfor %}
{% else %}

No galleries have been set up yet.

{% endif %} {% if is_paginated %} {% if has_previous %} « previous | {% endif %} {% if has_next %} next » {% endif %} {% endif %} {% endblock %}