-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfoda.html
42 lines (37 loc) · 1.25 KB
/
foda.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
---
layout: gallery
title: Foda
permalink: /foda
---
<div class="blurb">
<h1 class="side-text">
<span>f</span>
<span>o</span>
<span>d</span>
<span>a</span>
</h1>
<h1 class="side-text">
<span>f</span>
<span>o</span>
<span>d</span>
<span>a</span>
</h1>
<div class="art-row">
<div class="art-column">
{% assign foda_images = site.static_files | where: "foda", true %}
{% for image in foda_images %}{% if image.path contains 'foda/col1' %}
<img loading="lazy" src="{{ site.baseurl }}{{ image.path }}" alt="image" class="noise" />
{% endif %}{% endfor %}
</div>
<div class="art-column">
{% for image in foda_images %}{% if image.path contains 'foda/col2' %}
<img loading="lazy" src="{{ site.baseurl }}{{ image.path }}" alt="image" class="noise" />
{% endif %}{% endfor %}
</div>
<div class="art-column">
{% for image in foda_images %}{% if image.path contains 'foda/col3' %}
<img loading="lazy" src="{{ site.baseurl }}{{ image.path }}" alt="image" class="noise" />
{% endif %}{% endfor %}
</div>
</div>
</div><!-- /.blurb -->