-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmblog.html
More file actions
38 lines (36 loc) · 1 KB
/
mblog.html
File metadata and controls
38 lines (36 loc) · 1 KB
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
---
layout: default
title: Python
meta_contenido: articulos e informacion acerca de python
meta_keywords: python
permalink: /python/
---
<h1 class="centrar-titulo-blog">
Últimas publicaciones
</h1>
<ul class="lista-blog">
{% for post in site.categories.python %}
<li class="blog-listado">
<p class="fecha">
{% assign month = post.date | date: "%m" %}
{% case month %}
{% when '01' %} Enero
{% when '02' %} Febrero
{% when '03' %} Marzo
{% when '04' %} Abril
{% when '05' %} Mayo
{% when '06' %} Junio
{% when '07' %} Julio
{% when '08' %} Agosto
{% when '09' %} Septiembre
{% when '10' %} Octubre
{% when '11' %} Noviembre
{% when '12' %} Diciembre
{% endcase %}
{{ post.date | date: "%-d de %Y" }}
</p>
<p class="leader"><a href="{{ post.url }}">{{ post.title }}</a></p>
<p class="intro">{{post.intro}}</p>
</li>
{% endfor %}
</ul>