Remove old Twig extension files

This commit is contained in:
Oliver Davies 2017-07-11 07:23:10 +01:00
parent d1c70b0f62
commit 039904b3c2
35 changed files with 0 additions and 840 deletions

View file

@ -1,18 +0,0 @@
{% if data.posts and page.url != '/blog' %}
<div class="latest-posts panel panel-default">
<div class="latest-posts__heading panel-heading">Latest blog posts</div>
<ul class="list-group">
{% for post in data.posts|slice(0, site.latest_posts) %}
<li class="post list-group-item">
<span class="post__title">
<a href="{{ post.url }}">
{{ post.title }}
</a>
</span> -
<span class="post__date">{{ post.date|date(site.default_date_format) }}</span>
</li>
{% endfor %}
</ul>
</div>
{% endif %}