forked from wulfovitch/wulfovitch.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (35 loc) · 1.01 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
---
{% for post in paginator.posts %}
<h2><a href="{{ post.url }}" title="[Permalink] {{ post.title }}">{{ post.title }}</a></h2>
<div class="post_date">{{ post.date | date_to_long_string }}</div>
{{ post.content }}
<div class="comments">
<a href="{{ post.url }}#disqus_thread" title="Show comments">Comments</a>
</div>
{% if post != paginator.posts.last %}
{% endif %}
{% endfor %}
<div class="paginator">
<div class="left_column">
{% if paginator.next_page %}
<a href="/page{{ paginator.next_page }}/" title="Older entries">« older entries</a>
{% endif %}
</div>
{% include search.html %}
<div class="right_column">
{% if paginator.previous_page %}
<a href="
{% if paginator.previous_page == 1 %}
/
{% else %}
/page{{ paginator.previous_page }}
{% endif %}" title="Newer entries">newer entries »</a>
{% endif %}
</div>
<div class="clear_both">
</div>
</div>