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.
35 lines
762 B
35 lines
762 B
{% extends "photologue/root.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Latest Photo Galleries" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="row page-header col-lg-12">
|
|
<h1>{% trans "Latest Photo Galleries" %}</h1>
|
|
</div>
|
|
|
|
<div class="col-md-2">
|
|
|
|
<div>{% trans "Filter by year" %}</div>
|
|
<ul>
|
|
{% for date in date_list %}
|
|
<li><a href="{% url 'pl-gallery-archive-year' date.year %}">{{ date|date:"Y" }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-10">
|
|
|
|
{% if latest %}
|
|
{% for gallery in latest %}
|
|
{% include "photologue/includes/gallery_sample.html" %}
|
|
{% endfor %}
|
|
{% else %}
|
|
<div class="row">{% trans "No galleries were found" %}.</div>
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|