33 lines
No EOL
1 KiB
HTML
33 lines
No EOL
1 KiB
HTML
{% extends "base.html" %}
|
|
{% comment %}
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
{% endcomment %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% blocktrans with show_year=year|date:"Y" %}Galleries for {{ show_year }}{% endblocktrans %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<h1>{% blocktrans with show_year=year|date:"Y" %}Galleries for {{ show_year }}{% endblocktrans %}</h1>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<aside class="col-md-2">
|
|
<a href="{% url 'photologue:pl-gallery-archive' %}">⬅ {% trans "View all galleries" %}</a>
|
|
</aside>
|
|
<main class="col-md-10">
|
|
{% if object_list %}
|
|
<div class="row mb-2">
|
|
{% for gallery in object_list %}
|
|
<div class="col-6 col-md-3 mb-2">
|
|
{% include "photologue/includes/gallery_sample.html" %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
<p>{% trans "No galleries were found." %}</p>
|
|
{% endif %}
|
|
</main>
|
|
</div>
|
|
{% endblock %} |