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
376 B
HTML

<aside class="related-photos">
<div class="row">
{% for post in site.categories['photos'] limit:6 %}
<article class="related-photo col2">
<a class="photo-link" href="{{ post.url }}">
{% picture photothumb {{ post.image }} %}
</a>
</article>
{% endfor %}
</div>
</aside>