layout | title |
---|---|
pagina |
Blog |
-
{% for post in site.posts %}
{% assign months = "Enero|Febrero|Marzo|Abril|Mayo|Junio|Julio|Agosto|Septiembre|Octubre|Noviembre|Diciembre" | split: "|" %}
{% assign m = post.date | date: "%-m" | minus: 1 %}
{% assign day = post.date | date: "%-d" %}
{% assign month = months[m] %}
{% assign year = post.date | date: "%Y" %}
-
{{ post.title }}{{ day }} {{ month }} {{ year }}
{{ post.excerpt | strip_html }}
{% endfor %}