rDrama/files/templates/view_art.html

9 lines
257 B
HTML

{% extends "default.html" %}
{% block pagetitle %}{{title}}{% endblock %}
{% block content %}
<h2 class="mt-4">{{title}}</h2>
{% for url in urls %}
<img class="mt-4 mr-3" style="max-width:80vw" src="{{url}}" loading="lazy">
{% endfor %}
{% endblock %}