-
Notifications
You must be signed in to change notification settings - Fork 1
/
blog.pt-br.html
67 lines (63 loc) · 1.78 KB
/
blog.pt-br.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
title: Blog
lang: pt-br
permalink: /blog/
pagination:
enabled: true
locale: pt_BR
---
<h1>Últimas publicações</h1>
{% for post in paginator.posts %}
<article>
<header>
<h2><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h2>
</header>
<p>
<time datetime="{{ post.date | date_to_xmlschema }}">
{% assign m = post.date | date: "%-m" %}
{{ post.date | date: "%-d de" }}
{% case m %}
{% when '1' %}Janeiro
{% when '2' %}Fevereiro
{% when '3' %}Março
{% when '4' %}Abril
{% when '5' %}Maio
{% when '6' %}Junho
{% when '7' %}Julho
{% when '8' %}Agosto
{% when '9' %}Setembro
{% when '10' %}Outubro
{% when '11' %}Novembro
{% when '12' %}Dezembro
{% endcase %}
{{ post.date | date: " de %Y" }}
</time>
</p>
<p>{{ post.seo_description | truncatewords: 20 }}</p>
</article>
{% endfor %}
{% if paginator.total_pages > 1 %}
<center>
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path | relative_url }}">« Prev</a>
{% else %}
<span>« Anterior</span>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<em>{{ page }}</em>
{% elsif page == 1 %}
<a href="/blog">{{ page }}</a>
{% else %}
<a href="{{ site.pagination.paginate_path | relative_url | replace: ':num', page }}">{{ page }}</a>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | relative_url }}">Próximo »</a>
{% else %}
<span>Next »</span>
{% endif %}
</div>
<center/>
{% endif %}