Rename _includes to _partials

This commit is contained in:
Oliver Davies 2018-05-27 22:56:53 +02:00
parent c6aaf21722
commit 11d37468a8
27 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{% if data.posts and page.url != '/blog' %}
<div class="widget lh-copy">
<h2>Latest Blog Posts</h2>
<ul class="bullets">
{% for post in data.posts|slice(0, site.latest_posts) %}
<li>
<a href="{{ post.url }}">
{{ post.title }}
</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %}