forked from ciudadanointeligente/labcivico.org.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
32 lines (32 loc) · 1.13 KB
/
blog.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
---
layout: default
---
<section id="blog-page">
<div class="container">
<div class="row">
<div class="col-md-3 blog-menu">
{% for post in site.posts %}
<ul class="list-unstyled">
<li>
<small>{{ post.date | date_to_string }}</small>
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</li>
</ul>
{% endfor %}
</div>
<div class="col-md-9">
<h1>Blog</h1>
<ul class="posts list-unstyled">
{% for post in site.posts %}
<li id="{{ post.number }}">
<span class="label label-warning">{{ post.country }}</span>
<h2 class="blog"><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
<small>{{ post.date | date_to_string }} por {{ post.author }} • Tiempo de lectura : {{ words | plus: 250 | divided_by: 180 | append: " minuto(s)" }}</small>
<p>{{ post.excerpt }} <span><a href="{{site.baseurl}}{{post.url}}">ver más</a></span></p>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</section>