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
Rupus Reinefjord a528892ac8 initial commit
2018-01-11 23:54:26 +01:00

20 lines
544 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, 200) }},
{{ photo_resize_url(photo, 300) }} 1.5x,
{{ photo_resize_url(photo, 400) }} 2x"
src="{{ photo_resize_url(photo, 200) }}">
</a>
{% endfor %}
</div>
</main>
{% endblock %}