{% extends "base.html" %} {% block content %} {% for item in items %}
{% if item.thumbnail and not single %}
{% endif %}

{{ item.name }}

{% if item.contact %} Contact: {{ item.contact }}
{% endif %} {% if item.tag_list|length %} Technologies: {% endif %} {% for tag in item.tag_list %} {{ tag.name }} {% endfor %} {% if item.projects.count %} Projects: {% endif %} {% for project in item.projects.all %} {{ project.name }} {% endfor %}
Uploaded at {{ item.created }} (Edit) {% if not single %} (Permalink) {% endif %}

{{ item.description }}


{% if single %} {% endif %}
{% endfor %} {% endblock %}