Vivid-Casper/post.hbs

154 lines
5.9 KiB
Handlebars
Raw 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
into the {body} of the default.hbs template --}}
<header class="site-header outer">
<div class="inner">
2017-06-13 18:02:22 +00:00
{{> "site-nav"}}
2017-05-15 20:03:47 +00:00
</div>
</header>
{{!-- Everything inside the #post tags pulls data from the post --}}
2014-09-25 14:35:06 +00:00
{{#post}}
<main id="site-main" class="site-main outer">
2017-05-15 20:03:47 +00:00
<div class="inner">
2017-06-05 11:19:29 +00:00
<article class="post-full {{post_class}} {{#unless feature_image}}no-image{{/unless}}">
2017-05-15 20:03:47 +00:00
<header class="post-full-header">
<section class="post-full-meta">
<time class="post-full-meta-date" datetime="{{date format="YYYY-MM-DD"}}">{{date format="D MMMM YYYY"}}</time>
{{#primary_tag}}
<span class="date-divider">/</span> <a href="{{url}}">{{name}}</a>
{{/primary_tag}}
2017-05-15 20:03:47 +00:00
</section>
<h1 class="post-full-title">{{title}}</h1>
</header>
2017-05-15 20:03:47 +00:00
{{#if feature_image}}
2018-12-17 12:25:57 +00:00
<figure class="post-full-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="(max-width: 800px) 400px,
(max-width: 1170px) 700px,
1400px"
src="{{img_url feature_image size="xl"}}"
alt="{{title}}"
/>
</figure>
{{/if}}
2017-05-15 20:03:47 +00:00
<section class="post-full-content">
<div class="post-content">
{{content}}
</div>
</section>
2013-09-01 19:45:19 +00:00
{{!-- Email subscribe form at the bottom of the page --}}
{{#if @labs.subscribers}}
2017-05-15 20:03:47 +00:00
<section class="subscribe-form">
<h3 class="subscribe-form-title">Subscribe to {{@site.title}}</h3>
2017-05-15 20:03:47 +00:00
<p>Get the latest posts delivered right to your inbox</p>
{{subscribe_form placeholder="youremail@example.com"}}
</section>
{{/if}}
2017-05-15 20:03:47 +00:00
<footer class="post-full-footer">
{{!-- There are two options for how we display the byline/author-info.
If the post has more than one author, we load a specific template
from includes/byline-multiple.hbs, otherwise, we just use the
default byline. --}}
2018-04-10 18:19:29 +00:00
{{#has author="count:>1"}}
{{> "byline-multiple"}}
2018-04-10 18:19:29 +00:00
{{else}}
{{> "byline-single"}}
2018-04-10 18:19:29 +00:00
{{/has}}
2017-05-15 20:03:47 +00:00
</footer>
2017-06-08 07:19:22 +00:00
{{!--
2017-06-05 11:19:29 +00:00
<section class="post-full-comments">
If you want to embed comments, this is a good place to do it!
2017-06-05 11:19:29 +00:00
</section>
2017-06-08 07:19:22 +00:00
--}}
2017-06-05 11:19:29 +00:00
2017-05-15 20:03:47 +00:00
</article>
</div>
</main>
2014-09-25 14:35:06 +00:00
{{!-- Links to Previous/Next posts --}}
2017-05-15 20:03:47 +00:00
<aside class="read-next outer">
<div class="inner">
<div class="read-next-feed">
{{#if primary_tag}}
{{#get "posts" filter="tags:{{primary_tag.slug}}+id:-{{id}}" limit="3" as |related_posts|}}
{{#if related_posts}}
2017-06-12 09:01:00 +00:00
<article class="read-next-card"
{{#if ../primary_tag.feature_image}}
2018-12-17 12:25:57 +00:00
style="background-image: url({{img_url ../primary_tag.feature_image size="m"}})"
2017-06-12 09:01:00 +00:00
{{else}}
{{#if @site.cover_image}}
style="background-image: url({{img_url @site.cover_image size="m"}})"{{/if}}
2017-06-12 09:01:00 +00:00
{{/if}}
>
<header class="read-next-card-header">
<small class="read-next-card-header-sitetitle">&mdash; {{@site.title}} &mdash;</small>
{{#../primary_tag}}
<h3 class="read-next-card-header-title"><a href="{{url}}">{{name}}</a></h3>
{{/../primary_tag}}
2017-06-12 09:01:00 +00:00
</header>
<div class="read-next-divider">{{> "icons/infinity"}}</div>
<div class="read-next-card-content">
2017-06-13 17:51:08 +00:00
<ul>
{{#foreach related_posts}}
2017-06-12 09:01:00 +00:00
<li><a href="{{url}}">{{title}}</a></li>
{{/foreach}}
2017-06-13 17:51:08 +00:00
</ul>
2017-06-12 09:01:00 +00:00
</div>
2017-06-13 17:51:08 +00:00
<footer class="read-next-card-footer">
<a href="{{#../primary_tag}}{{url}}{{/../primary_tag}}">{{plural meta.pagination.total empty='No posts' singular='% post' plural='See all % posts'}} →</a>
2017-06-13 17:51:08 +00:00
</footer>
2017-06-12 09:01:00 +00:00
</article>
{{/if}}
2017-05-15 20:03:47 +00:00
{{/get}}
{{/if}}
2017-05-15 20:03:47 +00:00
2017-06-12 09:01:00 +00:00
{{!-- If there's a next post, display it using the same markup included from - partials/post-card.hbs --}}
2017-05-15 20:03:47 +00:00
{{#next_post}}
2017-06-12 09:01:00 +00:00
{{> "post-card"}}
2017-05-15 20:03:47 +00:00
{{/next_post}}
2017-06-12 09:01:00 +00:00
{{!-- If there's a previous post, display it using the same markup included from - partials/post-card.hbs --}}
2017-05-15 20:03:47 +00:00
{{#prev_post}}
2017-06-12 09:01:00 +00:00
{{> "post-card"}}
2017-05-15 20:03:47 +00:00
{{/prev_post}}
</div>
</div>
2015-03-27 17:10:31 +00:00
</aside>
2017-06-15 14:03:19 +00:00
{{!-- Floating header which appears on-scroll, included from includes/floating-header.hbs --}}
{{> floating-header}}
2014-09-25 14:35:06 +00:00
{{/post}}
2017-06-08 07:19:22 +00:00
{{!-- The #contentFor helper here will send everything inside it up to the matching #block helper found in default.hbs --}}
{{#contentFor "scripts"}}
<script>
$(document).ready(function () {
var $postContent = $(".post-full-content");
$postContent.fitVids();
});
2017-06-08 07:19:22 +00:00
</script>
{{/contentFor}}