17 lines
375 B
HTML
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 %}
|