forked from balanced/balanced.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (26 loc) · 686 Bytes
/
index.html
File metadata and controls
31 lines (26 loc) · 686 Bytes
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
---
layout: default
description: This is the landing page
---
<div id="listing-main" class="container clearfix" role="main">
<nav id="yearfilter">
<button id="filter-btn">Year Filter</button>
<div id="filter-indicator">2014</div>
<ul id="filter-options">
<li><a href="#">2014</a></li>
<li><a href="#">2013</a></li>
<li><a href="#">2012</a></li>
</ul>
</nav>
{% for post in site.posts limit: 24 %}
{% if forloop.first %}
{% include post-list-featured.html %}
<div id="masonry">
{% else %}
{% include post-list-item.html %}
{% endif %}
{% if forloop.last %}
</div>
{% endif %}
{% endfor %}
</div>