blob: cdf6ab47271409dee9965a67fcde0db73b61f641 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<div class="sidebar well">
<h1>{{ site.description }}</h1>
</div>
<div class="sidebar well">
<h1>{% t global.recent_posts %} </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>
|