2021-03-04 23:31:29 +00:00
|
|
|
{{!-- This is a partial file used to generate a post "card"
|
|
|
|
which templates loop over to generate a list of posts. --}}
|
|
|
|
|
2022-05-16 11:33:11 +00:00
|
|
|
<article class="post-card {{post_class}}{{#is "home"}}{{^is "paged"}}{{#has index="0"}}{{#match @custom.first_post_layout "Large card"}} post-card-large{{/match}}{{#match @custom.first_post_layout "Full-width card"}} post-card-full{{/match}}{{/has}}{{#match @custom.feed_layout "Dynamic grid"}}{{#match @custom.first_post_layout "None"}}{{#has index="0,1"}} dynamic{{/has}}{{else}}{{#has index="1,2"}} dynamic{{/has}}{{/match}}{{/match}}{{/is}}{{/is}}{{#if @custom.keep_card_thumbnail_ratio}} keep-ratio{{/if}}">
|
2018-12-17 12:25:57 +00:00
|
|
|
|
2017-06-12 09:01:00 +00:00
|
|
|
{{#if feature_image}}
|
2018-12-17 12:25:57 +00:00
|
|
|
<a class="post-card-image-link" href="{{url}}">
|
|
|
|
{{!-- This is a responsive image, it loads different sizes depending on device
|
|
|
|
https://medium.freecodecamp.org/a-guide-to-responsive-images-with-ready-to-use-templates-c400bd65c433 --}}
|
|
|
|
<img class="post-card-image"
|
|
|
|
srcset="{{img_url feature_image size="s"}} 300w,
|
|
|
|
{{img_url feature_image size="m"}} 600w,
|
|
|
|
{{img_url feature_image size="l"}} 1000w,
|
|
|
|
{{img_url feature_image size="xl"}} 2000w"
|
2021-03-02 01:34:12 +00:00
|
|
|
sizes="(max-width: 1000px) 400px, 800px"
|
2018-12-17 12:25:57 +00:00
|
|
|
src="{{img_url feature_image size="m"}}"
|
2021-07-05 02:59:21 +00:00
|
|
|
alt="{{#if feature_image_alt}}{{feature_image_alt}}{{else}}{{title}}{{/if}}"
|
2021-03-02 01:34:12 +00:00
|
|
|
loading="lazy"
|
2018-12-17 12:25:57 +00:00
|
|
|
/>
|
|
|
|
</a>
|
2017-06-12 09:01:00 +00:00
|
|
|
{{/if}}
|
2018-12-17 12:25:57 +00:00
|
|
|
|
2017-06-12 09:01:00 +00:00
|
|
|
<div class="post-card-content">
|
2018-12-17 12:25:57 +00:00
|
|
|
|
2017-06-12 09:01:00 +00:00
|
|
|
<a class="post-card-content-link" href="{{url}}">
|
|
|
|
<header class="post-card-header">
|
2022-05-16 04:08:19 +00:00
|
|
|
{{#primary_tag}}
|
2019-10-21 05:43:34 +00:00
|
|
|
<div class="post-card-primary-tag">{{name}}</div>
|
2022-05-16 04:08:19 +00:00
|
|
|
{{/primary_tag}}
|
2017-06-12 09:01:00 +00:00
|
|
|
<h2 class="post-card-title">{{title}}</h2>
|
|
|
|
</header>
|
2022-05-06 07:36:35 +00:00
|
|
|
{{#if excerpt}}
|
|
|
|
<div class="post-card-excerpt">{{excerpt}}</div>
|
|
|
|
{{/if}}
|
2017-06-12 09:01:00 +00:00
|
|
|
</a>
|
2018-12-17 12:25:57 +00:00
|
|
|
|
2017-06-12 09:01:00 +00:00
|
|
|
<footer class="post-card-meta">
|
2022-05-06 07:36:35 +00:00
|
|
|
<time class="post-card-meta-date" datetime="{{date format="YYYY-MM-DD"}}">{{date}}</time>
|
|
|
|
{{#if reading_time}}
|
|
|
|
<span class="sep">—</span>
|
|
|
|
<span class="post-card-meta-length">{{reading_time}}</span>
|
|
|
|
{{/if}}
|
2017-06-12 09:01:00 +00:00
|
|
|
</footer>
|
2018-12-17 12:25:57 +00:00
|
|
|
|
|
|
|
</div>{{!--/.post-card-content--}}
|
|
|
|
|
2017-06-12 09:01:00 +00:00
|
|
|
</article>
|