-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
51 lines (46 loc) · 1.22 KB
/
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
47
48
49
50
51
---
layout: default
---
<!-- HERO SECTION -->
<section class="hero">
<!-- LEFT HERO -->
<div class="sideHeroColumn">
{% for item in site.heros reversed %}
{% if item.position == 'left' %}
{% include article.html item=item %}
{% break %}
{% endif %}
{% endfor %}
</div>
<!-- HERO -->
<div class="heroColumn">
{% for item in site.heros reversed %}
{% if item.position == 'center' %}
{% include article.html item=item %}
{% break %}
{% endif %}
{% endfor %}
</div>
<!-- RIGHT HERO -->
<div class="sideHeroColumn">
{% for item in site.heros reversed %}
{% if item.position == 'right' %}
{% include article.html item=item %}
{% break %}
{% endif %}
{% endfor %}
</div>
</section>
<!-- MASONRY SECTION -->
<section class="masonry">
{% for item in site.columns reversed %}
{% if forloop.index <= 10 or forloop.index == forloop.length %}
<div class="item">
{% include article.html item=item %}
</div>
{% endif %}
{% endfor %}
<div id="masthead">
<h3><a style="text-decoration:none" href="{{ '/c1/' | prepend: site.baseurl | prepend: site.url }}">More Columns...</a></h3>
</div>
</section>