forked from MarseyWorld/MarseyWorld
13 lines
445 B
HTML
13 lines
445 B
HTML
{% extends "default.html" %}
|
|
{% block pagetitle %}{{title}}{% endblock %}
|
|
{% block content %}
|
|
<div id="view-art-{{kind}}" class="text-center">
|
|
<h2 class="mt-4">{{title}}</h2>
|
|
{% for url in urls %}
|
|
<a href="{{url|expand_art}}" class="text-decoration-none">
|
|
<img class="mt-4 mr-3 img" src="{{url}}" loading="lazy" data-nonce="{{g.nonce}}" data-onclick="expandImage('{{url|expand_art}}')">
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|