2021-01-13 18:58:23 -05:00
|
|
|
{%- 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>
|
2022-06-24 00:58:17 -04:00
|
|
|
<a href="{{ post.url | absolute_url }}"><h4> {{ post.title | strip_html | truncatewords: 7 }} </h4></a>
|
|
|
|
<p>{{ post.content | markdownify | strip_html | truncatewords: 19 }}</p>
|
2021-01-13 18:58:23 -05:00
|
|
|
<ul class="actions">
|
|
|
|
<li><a href="{{ post.url | absolute_url }}" class="button">Continue ></a></li>
|
|
|
|
</ul>
|
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|