1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-09-24 10:08:50 +02:00
blog/_src/_includes/relatedposts.html
2016-04-16 21:31:58 +02:00

25 lines
749 B
HTML

{% if site.related_posts.size > 1 %}
<aside class="related-posts">
<h1 class="related-posts-title">Related</h1>
<div class="grid grid--gutters grid--full grid-small--half grid-medium--third">
{% for post in site.related_posts limit:6 %}
<article class="related-post grid__col">
<a class="post-title-link" href="{{ post.url }}">
{% if post.image %}
{% picture featured {{ post.image }} %}
{% endif %}
<h1 class="post-title">{{ post.title | titlecase }}</h1>
</a>
</article>
{% endfor %}
</div>
</aside>
{% endif %}