1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-11-15 01:25:28 +01:00
blog/_src/_includes/relatedphotos.html

18 lines
445 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">
2017-07-23 20:40:33 +02:00
{% for post in site.categories['photos'] limit:9 %}
2015-08-18 20:55:30 +02:00
<article class="related-photo grid__col">
<a class="photo-link" href="{{ post.url }}">
2017-07-23 20:40:33 +02:00
{% include picture.html size='photothumb' file=post.image %}
</a>
</article>
{% endfor %}
</div>
</aside>