12 lines
528 B
HTML
12 lines
528 B
HTML
<!-- Featured products collection -->
|
|
<div class="col-6 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: 25 }}</p>
|
|
<ul class="actions">
|
|
<li><a href="{{ post.url | absolute_url }}" class="button">Continue ></a></li>
|
|
</ul>
|
|
</article>
|
|
</div>
|