-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (33 loc) · 914 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
---
layout: default
---
<div class="row-fluid">
<div class="span9">
{% for post in paginator.posts %}
<div class="post">
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<p>
{{ post.excerpt }}
<a href="{{ post.url }}" class="btn btn-link">read more</a>
</p>
</div>
{% endfor %}
<ul class="pager">
{% if paginator.previous_page_path %}
<li class="previous active"><a href="{{ paginator.previous_page_path }}">← Older</a></li>
{% else %}
<li class="previous disabled"><a href="#"> ← Older</a></li>
{% endif %}
{% if paginator.next_page_path %}
<li class="next active"><a href="{{ paginator.next_page_path }}">Newer →</a></li>
{% else %}
<li class="next disabled"><a href="#">Newer →</a></li>
{% endif %}
</ul>
</div>
<div class="span3">
{% include post-list.html %}
<br />
{% include site-tags.html %}
</div>
</div>