{% extends 'main/base.html' %} {% block title %}Photo Gallery - Monaco Institute{% endblock %} {% block content %}

Photo Gallery

{% if categories %}
All {% for cat in categories %} {% if cat %}{{ cat }}{% endif %} {% endfor %}
{% endif %}
{% for img in images %}

{{ img.title }}

{% empty %}

No gallery images yet.

{% endfor %}
{% endblock %}