mirror of
https://github.com/ViViDboarder/Vivid-Casper.git
synced 2024-10-31 18:36:31 +00:00
53 lines
1.9 KiB
Handlebars
53 lines
1.9 KiB
Handlebars
{{!< default}}
|
|
{{!-- The tag above means - insert everything in this file into the {body} of the default.hbs template --}}
|
|
|
|
<main id="site-main" class="site-main outer">
|
|
<div class="inner posts">
|
|
<div class="post-feed">
|
|
|
|
{{#tag}}
|
|
<section class="post-card post-card-large">
|
|
|
|
{{#if feature_image}}
|
|
<div class="post-card-image-link">
|
|
{{!-- 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="{{title}}"
|
|
/>
|
|
</div>
|
|
{{/if}}
|
|
|
|
<div class="post-card-content">
|
|
<div class="post-card-content-link">
|
|
<header class="post-card-header">
|
|
<h2 class="post-card-title">{{name}}</h2>
|
|
</header>
|
|
<div class="post-card-excerpt">
|
|
{{#if description}}
|
|
{{description}}
|
|
{{else}}
|
|
A collection of {{plural ../pagination.total empty='zero posts' singular='% post' plural='% posts'}}
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</section>
|
|
{{/tag}}
|
|
|
|
{{#foreach posts}}
|
|
{{!-- The tag below includes the markup for each post - partials/post-card.hbs --}}
|
|
{{> "post-card"}}
|
|
{{/foreach}}
|
|
|
|
</div>
|
|
</div>
|
|
</main>
|