Vivid-Casper/partials/post-card.hbs

79 lines
3.1 KiB
Handlebars
Raw Normal View History

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-06-03 09:07:38 +00:00
<article class="post-card {{post_class}}{{#match @custom.feed_layout "Classic"}}{{#is "home"}}{{#has index="0"}} post-card-large{{/has}}{{#has index="1,2"}} dynamic{{/has}}{{/is}}{{/match}}{{#match @custom.feed_layout "Grid"}} keep-ratio{{/match}}{{#match @custom.feed_layout "List"}}{{#is "home, paged"}} post-card-large{{/is}}{{/match}}{{#unless access}} post-access-{{visibility}}{{/unless}}">
2018-12-17 12:25:57 +00:00
2017-06-12 09:01:00 +00:00
{{#if feature_image}}
2022-05-26 06:31:14 +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"
sizes="(max-width: 1000px) 400px, 800px"
src="{{img_url feature_image size="m"}}"
alt="{{#if feature_image_alt}}{{feature_image_alt}}{{else}}{{title}}{{/if}}"
loading="lazy"
/>
{{#unless access}}
2022-05-26 06:31:14 +00:00
{{^has visibility="public"}}
<div class="post-card-access">
{{> "icons/lock"}}
{{#has visibility="members"}}
Members only
{{else}}
Paid-members only
{{/has}}
2022-05-26 06:31:14 +00:00
</div>
{{/has}}
{{/unless}}
2022-05-26 06:31:14 +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-26 05:31:16 +00:00
<div class="post-card-tags">
{{#primary_tag}}
<span class="post-card-primary-tag">{{name}}</span>
{{/primary_tag}}
{{#if featured}}
<span class="post-card-featured">{{> "icons/fire"}} Featured</span>
{{/if}}
</div>
2022-05-26 06:31:14 +00:00
<h2 class="post-card-title">
{{#unless access}}
2022-05-26 06:31:14 +00:00
{{^has visibility="public"}}
{{#unless feature_image}}
{{> "icons/lock"}}
{{/unless}}
{{/has}}
{{/unless}}
2022-05-26 06:31:14 +00:00
{{title}}
</h2>
2017-06-12 09:01:00 +00:00
</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="post-card-meta-length">{{reading_time}}</span>
{{/if}}
{{#if @site.comments_enabled}}
{{comment_count}}
{{/if}}
2017-06-12 09:01:00 +00:00
</footer>
2018-12-17 12:25:57 +00:00
2022-05-19 12:55:53 +00:00
</div>
2018-12-17 12:25:57 +00:00
2017-06-12 09:01:00 +00:00
</article>