2013-05-11 10:16:11 +00:00
|
|
|
{{!< default}}
|
2017-06-13 18:07:26 +00:00
|
|
|
|
2017-05-15 20:03:47 +00:00
|
|
|
{{!-- The tag above means: insert everything in this file
|
2021-03-03 02:48:32 +00:00
|
|
|
into the {body} tag of the default.hbs template --}}
|
2017-05-15 20:03:47 +00:00
|
|
|
|
2013-08-11 14:39:25 +00:00
|
|
|
|
2014-09-25 14:35:06 +00:00
|
|
|
{{#post}}
|
2021-03-03 02:48:32 +00:00
|
|
|
{{!-- Everything inside the #post block pulls data from the post --}}
|
2014-09-25 14:35:06 +00:00
|
|
|
|
2021-09-22 07:24:17 +00:00
|
|
|
<main id="site-main" class="site-main">
|
2022-05-19 13:46:26 +00:00
|
|
|
<article class="article {{post_class}} {{#match @custom.post_image_style "Full"}}image-full{{else match @custom.post_image_style "=" "Small"}}image-small{{/match}}">
|
2021-03-03 02:48:32 +00:00
|
|
|
|
2022-05-16 05:41:54 +00:00
|
|
|
<header class="article-header gh-canvas">
|
2021-03-03 02:48:32 +00:00
|
|
|
|
2022-05-26 05:31:16 +00:00
|
|
|
<div class="article-tag post-card-tags">
|
|
|
|
{{#primary_tag}}
|
|
|
|
<span class="post-card-primary-tag">
|
|
|
|
<a href="{{url}}">{{name}}</a>
|
|
|
|
</span>
|
|
|
|
{{/primary_tag}}
|
|
|
|
{{#if featured}}
|
|
|
|
<span class="post-card-featured">{{> "icons/fire"}} Featured</span>
|
2021-09-22 07:24:17 +00:00
|
|
|
{{/if}}
|
2022-05-26 05:31:16 +00:00
|
|
|
</div>
|
2019-10-21 05:43:34 +00:00
|
|
|
|
2022-05-16 05:41:54 +00:00
|
|
|
<h1 class="article-title">{{title}}</h1>
|
2019-10-21 05:43:34 +00:00
|
|
|
|
2022-05-16 05:41:54 +00:00
|
|
|
{{#if custom_excerpt}}
|
2021-09-22 07:24:17 +00:00
|
|
|
<p class="article-excerpt">{{custom_excerpt}}</p>
|
2022-05-16 05:41:54 +00:00
|
|
|
{{/if}}
|
2019-10-21 05:43:34 +00:00
|
|
|
|
2022-05-16 05:41:54 +00:00
|
|
|
<div class="article-byline">
|
|
|
|
<section class="article-byline-content">
|
|
|
|
|
|
|
|
<ul class="author-list">
|
|
|
|
{{#foreach authors}}
|
|
|
|
<li class="author-list-item">
|
|
|
|
{{#if profile_image}}
|
|
|
|
<a href="{{url}}" class="author-avatar">
|
|
|
|
<img class="author-profile-image" src="{{img_url profile_image size="xs"}}" alt="{{name}}" />
|
|
|
|
</a>
|
|
|
|
{{else}}
|
|
|
|
<a href="{{url}}" class="author-avatar author-profile-image">{{> "icons/avatar"}}</a>
|
|
|
|
{{/if}}
|
|
|
|
</li>
|
|
|
|
{{/foreach}}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<div class="article-byline-meta">
|
|
|
|
<h4 class="author-name">{{authors}}</h4>
|
|
|
|
<div class="byline-meta-content">
|
|
|
|
<time class="byline-meta-date" datetime="{{date format="YYYY-MM-DD"}}">{{date}}</time>
|
2022-05-26 05:56:10 +00:00
|
|
|
{{#if reading_time}}
|
|
|
|
<span class="byline-reading-time"><span class="bull">•</span> {{reading_time}}</span>
|
|
|
|
{{/if}}
|
2022-05-16 05:41:54 +00:00
|
|
|
</div>
|
2021-09-22 07:24:17 +00:00
|
|
|
</div>
|
2014-07-31 13:54:34 +00:00
|
|
|
|
2022-05-16 05:41:54 +00:00
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
|
2022-05-19 13:46:26 +00:00
|
|
|
{{#match @custom.post_image_style "!=" "Hidden"}}
|
2022-05-16 05:41:54 +00:00
|
|
|
{{#if feature_image}}
|
2021-09-22 07:24:17 +00:00
|
|
|
<figure class="article-image">
|
2018-12-17 12:25:57 +00:00
|
|
|
{{!-- 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
|
|
|
|
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-09-22 07:24:17 +00:00
|
|
|
sizes="(min-width: 1400px) 1400px, 92vw"
|
2018-12-17 12:25:57 +00:00
|
|
|
src="{{img_url feature_image size="xl"}}"
|
2021-09-22 07:24:17 +00:00
|
|
|
alt="{{#if feature_image_alt}}{{feature_image_alt}}{{else}}{{title}}{{/if}}"
|
2018-12-17 12:25:57 +00:00
|
|
|
/>
|
2021-09-22 07:24:17 +00:00
|
|
|
{{#if feature_image_caption}}
|
|
|
|
<figcaption>{{feature_image_caption}}</figcaption>
|
|
|
|
{{/if}}
|
2014-07-21 18:19:49 +00:00
|
|
|
</figure>
|
2022-05-16 05:41:54 +00:00
|
|
|
{{/if}}
|
2022-05-19 13:46:26 +00:00
|
|
|
{{/match}}
|
2014-07-31 13:54:34 +00:00
|
|
|
|
2022-05-16 05:41:54 +00:00
|
|
|
</header>
|
2013-09-01 19:45:19 +00:00
|
|
|
|
2022-05-16 05:41:54 +00:00
|
|
|
<section class="gh-content gh-canvas">
|
|
|
|
{{content}}
|
|
|
|
</section>
|
|
|
|
|
2022-08-12 13:30:06 +00:00
|
|
|
{{#if comments}}
|
2021-09-22 07:24:17 +00:00
|
|
|
<section class="article-comments gh-canvas">
|
2022-08-12 13:30:06 +00:00
|
|
|
{{comments}}
|
2021-09-22 07:24:17 +00:00
|
|
|
</section>
|
2022-08-12 13:30:06 +00:00
|
|
|
{{/if}}
|
2016-05-08 08:50:20 +00:00
|
|
|
|
2022-05-16 05:41:54 +00:00
|
|
|
</article>
|
2014-01-15 09:58:34 +00:00
|
|
|
</main>
|
2014-09-25 14:35:06 +00:00
|
|
|
|
2021-03-04 01:22:45 +00:00
|
|
|
{{!-- A signup call to action is displayed here, unless viewed as a logged-in member --}}
|
2022-05-26 08:08:10 +00:00
|
|
|
{{#if @site.members_enabled}}
|
|
|
|
{{#unless @member}}
|
2022-08-12 13:30:06 +00:00
|
|
|
{{#unless @site.comments_enabled}}
|
2022-05-26 08:08:10 +00:00
|
|
|
{{#if access}}
|
2022-05-16 05:41:54 +00:00
|
|
|
<section class="footer-cta outer">
|
2021-11-05 12:14:53 +00:00
|
|
|
<div class="inner">
|
2022-05-16 05:41:54 +00:00
|
|
|
{{#if @custom.email_signup_text}}<h2 class="footer-cta-title">{{@custom.email_signup_text}}</h2>{{/if}}
|
2021-11-24 02:50:46 +00:00
|
|
|
<a class="footer-cta-button" href="#/portal" data-portal>
|
2022-03-29 21:26:07 +00:00
|
|
|
<div class="footer-cta-input">{{t "Enter your email"}}</div>
|
|
|
|
<span>{{t "Subscribe"}}</span>
|
2021-11-05 12:14:53 +00:00
|
|
|
</a>
|
2017-05-15 20:03:47 +00:00
|
|
|
</div>
|
2021-11-05 12:14:53 +00:00
|
|
|
</section>
|
2022-05-26 08:08:10 +00:00
|
|
|
{{/if}}
|
|
|
|
{{/unless}}
|
2022-08-12 13:30:06 +00:00
|
|
|
{{/unless}}
|
2022-05-26 08:08:10 +00:00
|
|
|
{{/if}}
|
2021-03-04 01:22:45 +00:00
|
|
|
|
2022-03-07 07:50:12 +00:00
|
|
|
{{!-- Read more links, just above the footer --}}
|
2022-05-19 13:47:14 +00:00
|
|
|
{{#if @custom.show_recent_posts_footer}}
|
2022-03-07 07:50:12 +00:00
|
|
|
{{!-- The {#get} helper below fetches some of the latest posts here
|
|
|
|
so that people have something else to read when they finish this one.
|
|
|
|
|
|
|
|
This query gets the latest 3 posts on the site, but adds a filter to
|
|
|
|
exclude the post we're currently on from being included. --}}
|
2022-05-26 09:41:59 +00:00
|
|
|
{{#get "posts" filter="id:-{{id}}" limit="3" as |more_posts|}}
|
2022-03-07 07:50:12 +00:00
|
|
|
|
|
|
|
{{#if more_posts}}
|
2022-05-16 05:41:54 +00:00
|
|
|
<aside class="read-more-wrap outer">
|
2022-03-07 07:50:12 +00:00
|
|
|
<div class="read-more inner">
|
|
|
|
{{#foreach more_posts}}
|
|
|
|
{{> "post-card"}}
|
|
|
|
{{/foreach}}
|
|
|
|
</div>
|
|
|
|
</aside>
|
|
|
|
{{/if}}
|
|
|
|
{{/get}}
|
|
|
|
{{/if}}
|
|
|
|
|
2021-03-04 22:22:45 +00:00
|
|
|
{{/post}}
|