1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-09-24 18:18:49 +02:00
blog/_src/_includes/relatedposts.html

23 lines
665 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 }}">
{% picture featured {{ post.image }} %}
<h1 class="post-title">{{ post.title | titlecase }}</h1>
</a>
</article>
{% endfor %}
</div>
</aside>
{% endif %}