blob: c7e9262ddc983b06c56881cd8a0166b67c5525fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% if site.posts %}
<div class="column sidebar mt-3">
<div class="column">
<h1>
{{ site.data[site.active_lang].strings.global.recent_posts }}
</h1>
</div>
{% for post in site.posts limit:5 %}
<div class="column sidebar-element">
<a href="{{ site.baseurl }}{{ post.url }}">
{{ post.title }}
</a>
</div>
{% endfor %}
</div>
{% endif %}
|