This repository has been archived on 2025-03-17. You can view files and clone it, but cannot push or open issues or pull requests.
website/templates/photography.html
2018-03-28 11:11:13 +02:00

29 lines
828 B
HTML

{% extends 'layout.html' %}
{% set active_page = 'photo' %}
{% set title = 'Photography' %}
{% block body %}
<main>
<h2>Photography</h2>
<div class="photo-grid">
{% for photo in photos %}
<a href="{{ url_for('view_photo', photo_id=photo.id) }}">
<img srcset="{{ photo_resize_url(photo, 300) }},
{{ photo_resize_url(photo, 400) }} 1.5x,
{{ photo_resize_url(photo, 800) }} 2x"
src="{{ photo_resize_url(photo, 300) }}">
</a>
{% endfor %}
</div>
<nav>
{% if page > 1 %}
<a href="{{ url_for('photography', page=page-1) }}" class="nav-item next">&larr; Newer</a>
{% endif %}
{% if has_next %}
<a href="{{ url_for('photography', page=page+1) }}" class="nav-item prev">Older &rarr;</a>
{% endif %}
</nav>
</main>
{% endblock %}