-
Notifications
You must be signed in to change notification settings - Fork 41
/
index.html
47 lines (41 loc) · 1.16 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
---
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">2015</div>
<ul id="filter-options">
<li><a href="#">2015</a></li>
<li><a href="#">2014</a></li>
<li><a href="#">2013</a></li>
<li><a href="#">2012</a></li>
</ul>
</nav>
{% for post in paginator.posts %}
{% if forloop.first %}
{% include post-list-featured.html %}
<div id="masonry">
{% else %}
{% include post-list-item.html %}
{% endif %}
{% if forloop.last %}
</div>
{% endif %}
{% endfor %}
{% if paginator.total_pages > 1 %}
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">Prev</a>
{% else %}
<span>Prev</span>
{% endif %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Next</a>
{% else %}
<span>Next</span>
{% endif %}
</div>
{% endif %}
</div>