blob: cc910787b0838b7b8dc2542a098e8e6ae9bc235e (
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 %}
<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>
|