summaryrefslogtreecommitdiff
path: root/_includes/sidebar.html
blob: 9df403a3df8438077fda80a572481fac8b3b7609 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<div class="sidebar well">
{{ site.description }}
</div>

<div class="sidebar well">
    <h1>Posts recientes</h1>
    <ul>
        {% for post in site.posts limit:5 %}
          <li><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></li>
        {% endfor %}
    </ul>
</div>

<div class="sidebar well">
{% include links-list.html %}
</div>