2014-03-18 20:10:43 -04:00
|
|
|
{{!< default}}
|
2016-05-08 04:50:20 -04:00
|
|
|
{{!-- The tag above means - insert everything in this file into the {body} of the default.hbs template --}}
|
2014-03-18 20:10:43 -04:00
|
|
|
|
2021-03-03 20:22:45 -05:00
|
|
|
|
|
|
|
<section class="outer">
|
2019-10-21 01:43:34 -04:00
|
|
|
<div class="inner posts">
|
2017-06-12 05:01:00 -04:00
|
|
|
<div class="post-feed">
|
2021-03-04 18:31:29 -05:00
|
|
|
|
|
|
|
{{#tag}}
|
2021-06-10 01:32:41 -04:00
|
|
|
<section class="post-card post-card-large">
|
2021-03-04 18:31:29 -05:00
|
|
|
{{#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}}"
|
|
|
|
loading="lazy"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
<div class="post-card-content">
|
|
|
|
<div class="post-card-content-link">
|
|
|
|
<header class="post-card-header">
|
|
|
|
<div class="post-card-primary-tag">Tagged</div>
|
|
|
|
<h2 class="post-card-title">{{name}}</h2>
|
|
|
|
</header>
|
2021-06-10 01:32:41 -04:00
|
|
|
<div class="post-card-excerpt">
|
2021-03-04 18:31:29 -05:00
|
|
|
<p>
|
|
|
|
{{#if description}}
|
|
|
|
{{description}}
|
|
|
|
{{else}}
|
|
|
|
A collection of {{plural ../pagination.total empty='zero posts' singular='% post' plural='% posts'}}
|
|
|
|
{{/if}}
|
|
|
|
</p>
|
2021-06-10 01:32:41 -04:00
|
|
|
</div>
|
2021-03-04 18:31:29 -05:00
|
|
|
</div>
|
|
|
|
</div>{{!--/.post-card-content--}}
|
|
|
|
|
2021-06-10 01:32:41 -04:00
|
|
|
</section>
|
2021-03-04 18:31:29 -05:00
|
|
|
{{/tag}}
|
|
|
|
|
2021-03-03 23:20:10 -05:00
|
|
|
{{#foreach posts}}
|
2021-03-04 18:31:29 -05:00
|
|
|
|
2017-06-12 05:01:00 -04:00
|
|
|
{{!-- The tag below includes the markup for each post - partials/post-card.hbs --}}
|
|
|
|
{{> "post-card"}}
|
2021-03-04 18:31:29 -05:00
|
|
|
|
2017-06-12 05:01:00 -04:00
|
|
|
{{/foreach}}
|
2021-03-04 18:31:29 -05:00
|
|
|
|
2017-06-12 05:01:00 -04:00
|
|
|
</div>
|
2017-05-15 16:03:47 -04:00
|
|
|
</div>
|
2021-03-03 20:22:45 -05:00
|
|
|
</section>
|