Vivid-Casper/post.hbs

179 lines
6.7 KiB
Handlebars
Raw Normal View History

{{!< default}}
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 --}}
{{!-- The big featured header, it uses blog cover image as a BG if available --}}
<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}}
2017-05-31 18:09:50 +00:00
{{!-- Floating header which appears on-scroll, pulled from includes/floating-header.hbs --}}
2017-05-15 20:03:47 +00:00
{{> floating-header}}
2017-05-15 20:03:47 +00:00
<main id="site-main" class="site-main outer" role="main">
<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>
{{#if tags}}
2017-05-31 18:09:50 +00:00
<span class="date-divider">/</span> <a href="{{@blog.url}}tag/{{tags.[0].slug}}">{{tags.[0].name}}</a>
2017-05-15 20:03:47 +00:00
{{/if}}
</section>
<h1 class="post-full-title">{{title}}</h1>
</header>
2017-05-15 20:03:47 +00:00
{{#if feature_image}}
<figure class="post-full-image" style="background-image: url({{feature_image}})">
</figure>
{{/if}}
2017-05-15 20:03:47 +00:00
<section class="post-full-content">
{{content}}
</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 {{@blog.title}}</h3>
<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">
{{!-- Everything inside the #author tags pulls data from the author --}}
<section class="author-card">
{{#author}}
{{#if profile_image}}
<figure class="author-card-image">
<a class="img" href="{{url}}" style="background-image: url({{profile_image}})"><span class="hidden">{{name}}'s Picture</span></a>
</figure>
{{/if}}
<section class="author-card-content">
<h4><a href="{{url}}">{{name}}</a></h4>
{{#if bio}}
<p>{{bio}}</p>
{{else}}
<p>Read <a href="{{url}}">more posts</a> by this author.</p>
{{/if}}
<div class="author-card-meta">
{{#if location}}<span class="author-card-location">{{location}}</span>{{/if}}
{{#if website}}<span class="author-card-link"><a href="{{website}}">{{website}}</a></span>{{/if}}
</div>
</section>
{{/author}}
</section>
2017-06-05 11:19:29 +00:00
<section class="post-full-tags">
{{tags}}
2017-05-15 20:03:47 +00:00
</section>
</footer>
2017-06-08 07:19:22 +00:00
{{!--
2017-06-05 11:19:29 +00:00
<section class="post-full-comments">
<div id="disqus_thread"></div>
<script>
var disqus_config = function () {
2017-06-08 07:19:22 +00:00
this.page.url = '{{url absolute="true"}}';
this.page.identifier = 'ghost-{{id}}';
2017-06-05 11:19:29 +00:00
};
(function() {
2017-06-08 07:19:22 +00:00
var d = document, s = d.createElement('script');
s.src = 'https://test-apkdzgmqhj.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
2017-06-05 11:19:29 +00:00
})();
</script>
</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">
{{#get "posts" filter="tags:{{tags.[0].slug}}+id:-{{id}}" limit="3"}}
2017-06-12 09:01:00 +00:00
<article class="read-next-card"
{{#if ../tags.[0].feature_image}}
style="background-image: url({{../tags.[0].feature_image}})"
{{else}}
{{#if @blog.cover_image}}
style="background-image: url({{@blog.cover_image}})"{{/if}}
{{/if}}
>
<header class="read-next-card-header">
2017-06-13 17:51:08 +00:00
<small class="read-next-card-header-sitetitle">&mdash; {{@blog.title}} &mdash;</small>
<h3 class="read-next-card-header-title"><a href="{{@blog.url}}tag/{{../tags.[0].slug}}/">{{../tags.[0].name}}</a></h3>
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>
2017-06-12 09:01:00 +00:00
{{#foreach posts}}
<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="{{@blog.url}}tag/{{../tags.[0].slug}}/">{{plural meta.pagination.total empty='No posts' singular='% post' plural='See all % posts'}} →</a>
</footer>
2017-06-12 09:01:00 +00:00
</article>
2017-05-15 20:03:47 +00:00
{{/get}}
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>
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>
$(function() {
var $postContent = $(".post-full-content");
$postContent.fitVids();
$(window).scroll(function() {
var header = $(".floating-header");
var title = $(".post-full-title");
var trigger = title.offset().top;
var scroll = $(window).scrollTop();
if (scroll >= trigger + title.height() + 35 ) {
header.addClass("floating-active");
} else {
header.removeClass("floating-active");
}
});
});
</script>
{{/contentFor}}