forked from akhodakivskiy/akhodakivskiy.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (34 loc) · 1.11 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
---
layout: default
---
<div class="row">
<div class="span8">
{% assign abstract = true %}
{% for post in paginator.posts %}
{% assign content = post.content %}
{% include post.html %}
{% endfor %}
{% assign page_older = "← Older" %}
{% assign page_newer = "Newer →" %}
<ul class="pager">
{% if paginator.previous_page %}
<li class="previous">
{% if paginator.previous_page == 1 %}
<a href="/">{{ page_older }}</a>
{% else %}
<a href="/page{{paginator.previous_page}}">{{ page_older }}</a>
{% endif %}
</li>
{% endif %}
{% if paginator.next_page %}
<li class="next">
<a href="/page{{paginator.next_page}}" class="next">{{ page_newer }}</a>
</li>
{% endif %}
</ul>
</div>
<aside class="span4">
{% include recent.html %}
{% include projects.html %}
</aside>
</div>