2023-05-29 10:42:17 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
{% from 'macros/image.html' import gallery_item %}
|
2023-04-22 09:02:05 +00:00
|
|
|
{% block head %}
|
|
|
|
<meta property="og:image" content="{{ url_for('static', filename='icon.png') }}"/>
|
|
|
|
<meta name="twitter:image" content="{{ url_for('static', filename='icon.png') }}"/>
|
|
|
|
<meta name="twitter:card" content="summary"/>
|
|
|
|
{% endblock %}
|
2023-05-29 10:42:17 +00:00
|
|
|
|
|
|
|
{% block header %}
|
2023-04-04 19:36:24 +00:00
|
|
|
<div class="banner-small">
|
2023-03-08 13:36:35 +00:00
|
|
|
<div class="banner-content">
|
2023-04-07 09:18:03 +00:00
|
|
|
<h1 class="banner-header">{{ config.WEBSITE_CONF.name }}</h1>
|
2023-05-29 10:42:17 +00:00
|
|
|
{% if not total_images %}
|
|
|
|
<p class="banner-info">0 images!</p>
|
2023-04-06 18:42:04 +00:00
|
|
|
{% elif total_images == 69 %}
|
|
|
|
<p class="banner-info">{{ total_images }} images, nice</p>
|
2023-03-23 15:47:35 +00:00
|
|
|
{% else %}
|
2023-04-06 18:42:04 +00:00
|
|
|
<p class="banner-info">{{ total_images }} images</p>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if pages > 1 %}
|
|
|
|
<div class="pill-row">
|
|
|
|
<div>
|
2023-05-29 10:42:17 +00:00
|
|
|
{% if pages > 4 %}
|
|
|
|
<a class="pill-item" href="{{ url_for('gallery.index') }}"><i class="ph ph-caret-double-left"></i></a>
|
|
|
|
{% else %}
|
|
|
|
<button class="pill-item disabled"><i class="ph ph-caret-double-left"></i></button>
|
|
|
|
{% endif %}
|
|
|
|
<a class="pill-item" href="{% if (page - 1) > 1 %} {{ url_for('gallery.index', page=page - 1) }} {% else %} {{ url_for('gallery.index') }} {% endif %}"><i class="ph ph-caret-left"></i></a>
|
2023-04-06 18:42:04 +00:00
|
|
|
</div>
|
2023-04-20 16:15:51 +00:00
|
|
|
<span class="pill-text">{{ page }} / {{ pages }}</span>
|
2023-04-06 18:42:04 +00:00
|
|
|
<div>
|
2023-05-29 10:42:17 +00:00
|
|
|
<a class="pill-item" href="{% if (page + 1) < pages %} {{ url_for('gallery.index', page=page + 1) }} {% else %} {{ url_for('gallery.index', page=pages) }} {% endif %}"><i class="ph ph-caret-right"></i></a>
|
|
|
|
{% if pages > 4 %}
|
|
|
|
<a class="pill-item" href="{{ url_for('gallery.index', page=pages) }}"><i class="ph ph-caret-double-right"></i></a>
|
|
|
|
{% else %}
|
|
|
|
<button class="pill-item disabled"><i class="ph ph-caret-double-right"></i></button>
|
|
|
|
{% endif %}
|
2023-04-06 18:42:04 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-03-23 15:47:35 +00:00
|
|
|
{% endif %}
|
2023-03-01 23:29:34 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-05-29 10:42:17 +00:00
|
|
|
{% endblock %}
|
2023-04-06 18:42:04 +00:00
|
|
|
|
2023-05-29 10:42:17 +00:00
|
|
|
{% block nav_home %}selected{% endblock %}
|
|
|
|
{% block content %}
|
2023-03-09 23:31:58 +00:00
|
|
|
{% if images %}
|
2023-05-29 10:42:17 +00:00
|
|
|
<div class="gallery-grid">
|
|
|
|
{% for image in images %}{{ gallery_item(image) }}{% endfor %}
|
2023-03-09 23:31:58 +00:00
|
|
|
</div>
|
|
|
|
{% else %}
|
|
|
|
<div class="big-text">
|
2023-03-23 15:47:35 +00:00
|
|
|
<h1>*crickets chirping*</h1>
|
2023-03-26 01:04:13 +00:00
|
|
|
<p>There are no images here yet, upload some!</p>
|
2023-03-09 23:31:58 +00:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
2023-01-25 15:13:56 +00:00
|
|
|
{% endblock %}
|