-
Notifications
You must be signed in to change notification settings - Fork 0
/
play.html
33 lines (30 loc) · 1.01 KB
/
play.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{% extends "index.html" %}
{% block content %}
<div class="image-page">
{{ page.content | safe }}
<div class="image-flow">
{% for image in page.extra.images %}
<div class="image-desc">
<img src="{{ image }}" loading="lazy"/>
<div class="overlay-desc">
<div>
{% if loop.index0 < page.extra.titles | length %}
<div class="image-title">
{{ page.extra.titles[loop.index0] | title }}
</div>
{% endif %}
{% if loop.index0 < page.extra.descriptions | length %}
<div class="image-description">
{{ page.extra.descriptions[loop.index0] }}
</div>
{% endif %}
</div>
</div>
</div>
{% endfor %}
</div>
<div class="last-p">
Wish you a good day.
</div>
</div>
{% endblock content %}