14 lines
569 B
HTML
14 lines
569 B
HTML
{% assign posts = include.posts | where_exp: "post", "post.hidden != true" %}
|
|
<div class="page__related">
|
|
{% include before-related.html %}
|
|
<h2 class="page__related-title">{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}</h2>
|
|
<div class="grid__wrapper">
|
|
{% for post in posts limit:4 %}
|
|
{% if post.id == page.id %}{% continue %}{% endif %}
|
|
{% if count >= limit %}{% break %}{% endif %}
|
|
{% assign count = count | plus: 1 %}
|
|
{% include archive-single.html type="list" %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|