-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathblog.html
41 lines (37 loc) · 1.01 KB
/
blog.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
---
layout: default
---
<h1>Nieuws</h1>
<div class="posts">
{% for post in site.posts %}
<div class="post">
<h2 id="{{ post.identifier }}">
<a href="{{ post.url }}">
{{ post.title }}
</a>
</h2>
<span class="post-date">{{ post.date | date_to_string }}</span>
{{ post.content | split:"<!-- more -->" | first}}
{% if post.content | size > 300 %}
<p><br/><a href="{{ post.url }}">Lees verder >>></a></p><hr><br/>
{% endif %}
</div>
{% endfor %}
</div>
<!-- Pagination links -->
<div class="pagination" style="display:none;">
{% if paginator.next_page %}
<a href="/page{{paginator.next_page}}" class="older">Ouder</a>
{% else %}
<span class="next">Ouder</span>
{% endif %}
{% if paginator.previous_page %}
{% if paginator.page == 2 %}
<a href="/" class="newer">Nieuwer</a>
{% else %}
<a href="/page{{paginator.previous_page}}" class="newer">Nieuwer</a>
{% endif %}
{% else %}
<span class="previous">Nieuwer</span>
{% endif %}
</div>