-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdrawings.html
52 lines (46 loc) · 1.6 KB
/
drawings.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
layout: gallery
title: Drawings
permalink: /drawings
---
<div class="blurb">
<h1 class="side-text">
<span>d</span>
<span>r</span>
<span>a</span>
<span>w</span>
<span>i</span>
<span>n</span>
<span>g</span>
<span>s</span>
</h1>
<h1 class="art-column-title">desenhos</h1>
<h1 class="side-text">
<span>d</span>
<span>r</span>
<span>a</span>
<span>w</span>
<span>i</span>
<span>n</span>
<span>g</span>
<span>s</span>
</h1>
<div class="art-row">
<div class="art-column">
{% assign drawings = site.static_files | where: "drawings", true %}
{% for image in drawings reversed %}{% assign loopindex = forloop.index | modulo: 3 %}{% if loopindex == 1 %}
<img loading="lazy" src="{{ site.baseurl }}{{ image.path }}" alt="image" class="noise" />
{% endif %}{% endfor %}
</div>
<div class="art-column">
{% for image in drawings reversed %}{% assign loopindex = forloop.index | modulo: 3 %}{% if loopindex == 2 %}
<img loading="lazy" src="{{ site.baseurl }}{{ image.path }}" alt="image" class="noise" />
{% endif %}{% endfor %}
</div>
<div class="art-column">
{% for image in drawings reversed %}{% assign loopindex = forloop.index | modulo: 3 %}{% if loopindex == 0 %}
<img loading="lazy" src="{{ site.baseurl }}{{ image.path }}" alt="image" class="noise" />
{% endif %}{% endfor %}
</div>
</div>
</div><!-- /.blurb -->