-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 994 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
---
layout: default
---
{% for itPost in site.posts limit:10 %}
<article>
<header>
<h2><a href="{{itPost.url}}">{{itPost.title}}</a></h2>
<div class="info pull-right">
Publicado el <span class="pub-date">{{itPost.date | date:"%Y-%m-%d"}}</span> por <span class="author">{{itPost.author}}</span>
</div>
</header>
<div class="clearfix"> </div>
<p class="article-content">
{{ itPost.excerpt }}
</p>
<div class="article-meta">
<div class="category">
<h4>Publicado en</h4>
<span class="label label-default">{{itPost.category}}</span>
</div>
<div class="tags">
<h4>Etiquetas</h4>
<div class="badge-container">
{% for itTag in itPost.tags %}
<span class="badge label-default">{{itTag}}</span>
{% endfor %}
</div>
</div>
</div>
<footer>
</footer>
</article>
{% endfor %}