mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-11 23:55:16 +01:00
18 lines
376 B
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>
|