forked from ohduran/the-interesting-times
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (41 loc) · 966 Bytes
/
index.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
---
layout: default
---
<!-- HERO SECTION -->
<section class="hero">
<!-- LEFT HERO -->
<div class="sideHeroColumn">
{% for item in site.heros %}
{% if item.position == 'left' %}
{% include article.html item=item %}
{% break %}
{% endif %}
{% endfor %}
</div>
<!-- HERO -->
<div class="heroColumn">
{% for item in site.heros %}
{% if item.position == 'center' %}
{% include article.html item=item %}
{% break %}
{% endif %}
{% endfor %}
</div>
<!-- RIGHT HERO -->
<div class="sideHeroColumn">
{% for item in site.heros %}
{% if item.position == 'right' %}
{% include article.html item=item %}
{% break %}
{% endif %}
{% endfor %}
</div>
</section>
<!-- MASONRY SECTION -->
<section class="masonry">
{% for item in site.columns %}
<div class="item">
{% include article.html item=item %}
</div>
{% endfor %}
</section>