blob: 81bd3912f7a32401254e955877834925e6c716d5 (
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>{% t global.recent_posts %}
<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>
|