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

18 lines
426 B
HTML
Raw Normal View History

<aside class="related-photos">
2015-08-18 22:45:30 +02:00
<div class="grid grid--gutters grid--half grid-medium--third">
{% for post in site.categories['photos'] limit:6 %}
2015-08-18 20:55:30 +02:00
<article class="related-photo grid__col">
<a class="photo-link" href="{{ post.url }}">
{% picture photothumb {{ post.image }} %}
</a>
</article>
{% endfor %}
</div>
</aside>