2024-04-22 21:29:28 +00:00
|
|
|
{% extends 'default/templates/renderable/upload.html' %}
|
2024-04-12 19:22:00 +00:00
|
|
|
|
2024-10-22 15:02:22 +00:00
|
|
|
{% block fileview %}
|
2024-11-04 12:17:28 +00:00
|
|
|
<a href="#modal-image-{{ content.name }}">
|
2024-10-29 11:19:03 +00:00
|
|
|
<div class="preview">
|
|
|
|
<img
|
|
|
|
src="{{ content.url('raw') }}"
|
|
|
|
{% if content.description %}
|
|
|
|
alt="{{ content.description }}"
|
|
|
|
title="{{ content.description }}"
|
|
|
|
{% endif %}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</a>
|
2024-11-04 12:17:28 +00:00
|
|
|
<div id="modal-image-{{ content.name }}" class="modal">
|
|
|
|
<a href="#__close">✖</a>
|
2024-10-29 11:19:03 +00:00
|
|
|
<div class="content">
|
|
|
|
<img
|
|
|
|
src="{{ content.url('raw') }}"
|
|
|
|
{% if content.description %}
|
|
|
|
alt="{{ content.description }}"
|
|
|
|
title="{{ content.description }}"
|
|
|
|
{% endif %}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-04-12 19:22:00 +00:00
|
|
|
{% endblock %}
|