This repository has been archived on 2026-05-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
imagerepo/app/templates/gallery.html
T

17 lines
375 B
HTML

<!-- /app/templates/gallery.html -->
{% extends "layout.html" %}
{% block title %}Gallery{% endblock %}
{% block content %}
<h1 style="text-align:center; margin-top: 1rem;">Gallery</h1>
<!-- Gallery Grid -->
{% include '_gallery_grid.html' %}
<!-- Floating Pagination Bar -->
{% if images.pages > 1 %}
{% include '_pagination_floating.html' %}
{% endif %}
{% endblock %}