{% extends "base.html" %} {% block title %}Home{% endblock %} {% block content %}

Welcome to the Gallery!

Here you'll find pictures of various items. Below are some highlighted items; use the link at the bottom to see the full listing.

Showcase

{% for item in item_list|slice:":3" %} {% endfor %}
{{ item.name }}
{% if item.photo_set.count %} {% else %} No photos (yet) {% endif %}

View the full list »

{% endblock %}