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.
17 lines
592 B
17 lines
592 B
{% load i18n %}
|
|
|
|
{# Display a randomnly-selected set of photos from a given gallery #}
|
|
|
|
<div class="row col-lg-12">
|
|
|
|
<h2><a href="{{ gallery.get_absolute_url }}">{{ gallery.title }}</a></h2>
|
|
<p class="muted"><small>{% trans "Published" %} {{ gallery.date_added }}</small></p>
|
|
{% if gallery.description %}<p>{{ gallery.description|safe }}</p>{% endif %}
|
|
|
|
{% for photo in gallery.sample %}
|
|
<a href="{{ photo.get_absolute_url }}">
|
|
<img src="{{ photo.get_thumbnail_url }}" class="thumbnail" alt="{{ photo.title }}">
|
|
</a>
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|