-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 990 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
40
41
---
layout: layout
title: "Olá! Seja bem-vindo!"
image:
feature: berlin.jpg
redirect_from: /posts/
---
<div class="container content">
<ul class="recent-posts">
{% for post in site.posts %}
{% unless post.draft %}
<li>
<a href="{{ post.url }}">
<div>
<span class="title">{{ post.title }}</span>
<span class="date">
{% assign m = post.date | date: "%-m" %}
{% 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 %}
de
{{ post.date | date: "%Y" }}</span>
</div>
</a>
</li>
{% endunless %}
{% endfor %}
</ul>
<hr />
</div>