blob: 513c2a67792f4dfff8dad8283efde2b8aa26dec9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% if site.posts.size > 0 %}
{% capture latest_posts_content %}
<div class="list-group wide-enough">
{% for post in site.posts limit: 5 %}
<a class="list-group-item" href="{{ post.url | relative_url }}">
<span class="badge"><span class="glyphicon glyphicon-time"></span> {{ post.date | date: '%-d %b %Y' }}</span>
<span class="glyphicon glyphicon-file"></span> {{ post.title }}
</a>
{% endfor %}
</div>
{% endcapture %}
{% include jekyll-theme/sidebar/entry.html header='Latest posts' content=latest_posts_content %}
{% endif %}
|