mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-01-22 14:21:41 +00:00
27 lines
832 B
HTML
27 lines
832 B
HTML
{% extends 'layout.html' %}
|
|
|
|
{% block header %}
|
|
<img src="/uploads/original/{{ image['file_name'] }}" alt="leaves" onload="imgFade(this)" style="display: none;"/>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="app">
|
|
<div class="image__container">
|
|
<img
|
|
class="image__item"
|
|
src="/uploads/original/{{ image['file_name'] }}"
|
|
onload="imgFade(this)" style="display:none;"
|
|
/>
|
|
</div>
|
|
<div class="image__info">
|
|
<h2>{{ image['file_name'] }}</h2>
|
|
<p>{{ image['id'] }}</p>
|
|
<p>{{ image['author_id'] }}</p>
|
|
</div>
|
|
<div class="image__info">
|
|
{% for tag in exif %}
|
|
<p>{{ tag }}: {{ exif[tag] }}</p>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endblock %} |