You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
703 B
20 lines
703 B
{% extends "photologue/root.html" %}
|
|
{% load url from future %}
|
|
|
|
{% block title %}{{ object.title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{{ object.title }}</h1>
|
|
<h2>Originally published {{ object.date_added|date:"l, F jS, Y" }}</h2>
|
|
{% if object.description %}<p>{{ object.description }}</p>{% endif %}
|
|
<div class="photo-gallery">
|
|
{% for photo in object.public %}
|
|
<div class="gallery-photo">
|
|
<a href="{{ photo.get_absolute_url }}"><img src="{{ photo.get_thumbnail_url }}" class="{% block gallery-photo-class %}{% endblock %}" alt="{{ photo.title }}"/></a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
<p><a href="{% url 'photologue-gallery-list' %}">View all galleries</a></p>
|
|
|
|
{% endblock %}
|
|
|