12 lines
532 B
HTML
12 lines
532 B
HTML
|
<!-- Rest of products collection -->
|
||
|
<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 }} </h4></a>
|
||
|
<p>{{ post.content | strip_html | truncatewords: 10 }}</p>
|
||
|
<ul class="actions">
|
||
|
<li><a href="{{ post.url | absolute_url }}" class="button">Continue ></a></li>
|
||
|
</ul>
|
||
|
</article>
|
||
|
</div>
|