blog_theme/partials/loop.hbs

20 lines
610 B
Handlebars
Raw Normal View History

2019-05-27 16:34:56 +03:00
<article class="{{post_class}}{{#unless feature_image}} no-image{{/unless}} u-shadow">
2019-04-30 18:00:55 +03:00
{{#if featured}}
<img class="post-image lazyload u-object-fit"
data-src="{{img_url feature_image}}"
src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
data-sizes="auto"
alt="{{title}}"
>
{{/if}}
{{> post-media same_height=true ratio="rectangle"}}
<div class="post-wrapper">
2019-05-01 11:20:04 +03:00
{{> post-header tag="h2"}}
2019-04-30 18:00:55 +03:00
{{#if excerpt}}
<div class="post-excerpt">
{{excerpt words="12"}}
2019-04-29 19:46:11 +03:00
</div>
2019-04-30 18:00:55 +03:00
{{/if}}
</div>
{{> post-footer}}
</article>