blob: 17251e389de1d02e04765522e15dfca7979c62cc (
plain) (
tree)
|
|
{% unless site.settings.sidebar.latest_posts.hide or page.sidebar.latest_posts.hide %}
{% if site.posts.size > 0 %}
{% capture latest_posts_content %}
<div class="list-group wide-enough">
<div class="list-group-item disabled">
<h4 class="list-group-item-heading">latest posts</h4>
</div>
{% for post in site.posts limit: 5 %}
<a class="list-group-item" href="{{ post.url | relative_url }}">
<h5 class="list-group-item-heading post-header">
<span>{{ post.title }}</span>
<small class="post-date"><span class="glyphicon glyphicon-time"></span> {{ post.date | date: '%-d %b %Y' }}</small>
</h5>
</a>
{% endfor %}
</div>
{% endcapture %}
{% include jekyll-theme/sidebar/entry.html content=latest_posts_content %}
{% endif %}
{% endunless %}
|