Vivid-Casper/post.hbs

140 lines
4.8 KiB
Handlebars
Raw Permalink Normal View History

{{!< 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
V3 (#626) * Changed {{code}} to {{statusCode}} refs https://github.com/TryGhost/gscan/commit/2ebd9feeee20c084a1d4ab84e5100cdb1e1400de - {{code}} use has been deprecated in canary rule set of gscan * V3 Update * Update package and readme for 3.0 * Improve install instructions * Update to support browserlist * Upgrade dependencies * Fix misnamed property * V3 darkmode (#619) Added dark mode styles * Casper final refinements batch 1 * Casper final refinements batch 2 * Fixed bookmark card hover bug * Fixed header social links * Updated screenshots * Updated readme no issue - refreshed screenshot * Udpate screenshot in readme no issue * 3.0.0-beta.2 * Fixed cut header for post cards no issue * 3.0.0-beta.3 * 3.0.0-beta.4 * Updated current version and previous version logic (#554) no issue - Use current version from `package.json` instead of `npm_package_version` env variable - Use `release.tag_name` instead of `release.name` for previous version * Updated jQuery to 3.4.1 to avoid known vulnerabilities (#590) no issue https://snyk.io/vuln/npm:jquery?lh=3.2.1&utm_source=lighthouse&utm_medium=ref&utm_campaign=audit * Fixed code cards with long lines from being too wide no issue Credits - https://github.com/TryGhost/Casper/pull/602 * Bumped gscan version to v3.0.0 (#621) * Bumped gscan to v3.0.0 - This also fixes failing CI builds because the default rules that are being checked were for v2 * Added explicit version check for gscan command * Added member subscription support (#623) * Added member subscription support no issue * Added member subscription success message no issue * Added member subscription overlay * Refined members subscription overlay * Deleted unused website icon * Ran CSSComb * Updated built assets * 3.0.0-beta.5 * Updated built assets for v3 no issue * 3.0.0-beta.6 * Remove unused partial * V3 cleanup (#625) * Removed unused infinity icon * Removed unused location icon * Removed unused 'point' icon * Removed unused Ghost logo icon * Removed unused author partials * Cleaned up index log * Fixed responsive feature image sizes for page template
2019-10-21 05:43:34 +00:00
2021-03-03 02:48:32 +00:00
{{#post}}
{{!-- Everything inside the #post block pulls data from the post --}}
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>
{{/if}}
</div>
2021-03-03 02:48:32 +00:00
2022-05-16 05:41:54 +00:00
<h1 class="article-title">{{title}}</h1>
2021-03-03 02:48:32 +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}}
<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>
{{#if reading_time}}
<span class="byline-reading-time"><span class="bull">&bull;</span> {{reading_time}}</span>
{{/if}}
2022-05-16 05:41:54 +00:00
</div>
2021-09-22 07:24:17 +00:00
</div>
2013-09-01 19:45:19 +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">
{{!-- 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"
sizes="(min-width: 1400px) 1400px, 92vw"
src="{{img_url feature_image size="xl"}}"
alt="{{#if feature_image_alt}}{{feature_image_alt}}{{else}}{{title}}{{/if}}"
/>
{{#if feature_image_caption}}
<figcaption>{{feature_image_caption}}</figcaption>
{{/if}}
</figure>
2022-05-16 05:41:54 +00:00
{{/if}}
2022-05-19 13:46:26 +00:00
{{/match}}
2021-03-03 02:48:32 +00:00
2022-05-16 05:41:54 +00:00
</header>
2021-03-03 02:48:32 +00:00
2022-05-16 05:41:54 +00:00
<section class="gh-content gh-canvas">
{{content}}
</section>
{{#if comments}}
<section class="article-comments gh-canvas">
{{comments}}
</section>
{{/if}}
2021-03-03 02:48:32 +00:00
2022-05-16 05:41:54 +00:00
</article>
2021-09-22 07:24:17 +00:00
</main>
2021-03-03 02:48:32 +00:00
{{!-- A signup call to action is displayed here, unless viewed as a logged-in member --}}
{{#if @site.members_enabled}}
{{#unless @member}}
{{#unless @site.comments_enabled}}
{{#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>
2021-11-05 12:14:53 +00:00
<div class="footer-cta-input">Enter your email</div>
<span>Subscribe</span>
</a>
</div>
</section>
{{/if}}
{{/unless}}
{{/unless}}
{{/if}}
2021-03-03 02:48:32 +00:00
{{!-- Read more links, just above the footer --}}
2022-05-19 13:47:14 +00:00
{{#if @custom.show_recent_posts_footer}}
{{!-- 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|}}
{{#if more_posts}}
2022-05-16 05:41:54 +00:00
<aside class="read-more-wrap outer">
<div class="read-more inner">
{{#foreach more_posts}}
{{> "post-card"}}
{{/foreach}}
</div>
</aside>
{{/if}}
{{/get}}
2021-11-05 12:14:53 +00:00
{{/if}}
2015-03-27 17:10:31 +00:00
2021-03-04 22:22:45 +00:00
{{/post}}