mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-11 23:55:16 +01:00
19 lines
410 B
HTML
19 lines
410 B
HTML
|
<aside class="related-posts">
|
||
|
|
||
|
<h1 class="related-title">Related</h1>
|
||
|
|
||
|
<div class="row">
|
||
|
|
||
|
{% for post in site.posts limit:6 %}
|
||
|
|
||
|
<article class="related-post col2">
|
||
|
<a href="{{ post.url }}">
|
||
|
<h1 class="post-title">{{ post.title }}</h1>
|
||
|
</a>
|
||
|
</article>
|
||
|
|
||
|
{% endfor %}
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</aside>
|