sharpetronics.com/_includes/post_related.html
oDinZu 25751900ed
All checks were successful
continuous-integration/drone/push Build is passing
bugs and shop updates with strapi
2022-11-02 21:41:00 -04:00

13 lines
590 B
HTML

{%- for post in related_posts -%}
<div class="col-4 col-12-small vert-expand">
<article class="post product no-padding">
<a href="{{ post.url | absolute_url }}"><img alt="{{ post.title }}" src="{{ post.banner_image }}" class="image fit" /></a>
<a href="{{ post.url | absolute_url }}"><h4> {{ post.title | strip_html | truncatewords: 7 }} </h4></a>
<p>{{ post.content | markdownify | strip_html | truncatewords: 19 }}</p>
<ul class="actions">
<li><a href="{{ post.url | absolute_url }}" class="button">Continue ></a></li>
</ul>
</article>
</div>
{% endfor %}