mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-13 16:45:14 +01:00
22 lines
523 B
HTML
22 lines
523 B
HTML
{% if site.related_posts.size > 1 %}
|
|
<aside class="related-posts">
|
|
|
|
<h1 class="related-posts-title">Related</h1>
|
|
|
|
<div class="grid">
|
|
|
|
{% for post in site.related_posts limit:6 %}
|
|
|
|
<article class="related-post col2">
|
|
<a class="post-title-link" href="{{ post.url }}">
|
|
<h1 class="post-title">{{ post.title }}</h1>
|
|
</a>
|
|
</article>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</aside>
|
|
{% endif %}
|