-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (33 loc) · 915 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
---
{% for post in paginator.posts %}
<div class="post">
<h4 class="date">{{ page.date | date: "%b %-d, %Y" }}</h4>
<h2 class="headline">
<a href="{{ post.url }}">
{{ post.title }}
</a>
</h2>
<div class="entry">
{{ post.content }}
<div class="clear"></div>
<div class="comment">
<h4> <a href="{{ post.url | prepend: site.url }}/#disqus_thread" class="comments-link">0 Comentários</a> </h4>
</div>
</div>
</div>
{% endfor %}
<!-- Pagination links -->
<div class="navigation clearfix">
{% if paginator.next_page %}
<div class="alignleft">
<a href="/page{{ paginator.next_page }}">« Posts Antigos</a>
</div>
{% endif %}
{% if paginator.previous_page %}
<div class="alignright">
<a href="/page{{ paginator.previous_page }}">Novos Posts »</a>
</div>
{% endif %}
</div>