forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex_ant.html
40 lines (35 loc) · 1.3 KB
/
index_ant.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
---
title: RCM Blog
layout: default
---
<!-- This loops through the paginated posts -->
<div class="posts">
{% for post in paginator.posts %}
<article class="post">
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
<div class="date">
Publicado el {{ post.date | date: "%e-%m-%Y" }}
</div>
<div class="entry">
{{ post.excerpt }}
</div>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more btn btn-primary">Seguir leyendo
<i class="fa fa-chevron-right" aria-hidden="true"></i>
</a>
</article>
{% endfor %}
</div>
<!-- Pagination links -->
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" class="previous btn btn-secondary"><i class="fa fa-chevron-left" aria-hidden="true"></i> Prev.</a>
{% else %}
<span class="previous btn btn-secondary">Prev.</span>
{% endif %}
<span class="btn btn-secondary page_number">Página: {{ paginator.page }} de {{ paginator.total_pages }}</span>
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="next btn btn-secondary align-middle">Ant. <i class="fa fa-chevron-right" aria-hidden="true"></i></a>
{% else %}
<span class="next btn btn-secondary">Ant.</span>
{% endif %}
</div>