2013-10-17 03:16:40 +00:00
|
|
|
{{!< default}}
|
2017-05-31 18:09:50 +00:00
|
|
|
{{!-- The tag above means: insert everything in this file
|
|
|
|
into the {body} of the default.hbs template --}}
|
2013-10-17 03:16:40 +00:00
|
|
|
|
2017-05-15 20:03:47 +00:00
|
|
|
{{!-- The big featured header, it uses blog cover image as a BG if available --}}
|
2017-05-31 18:09:50 +00:00
|
|
|
<header class="site-header outer">
|
2017-05-15 20:03:47 +00:00
|
|
|
<div class="inner">
|
2017-06-13 18:02:22 +00:00
|
|
|
{{> "site-nav"}}
|
2017-05-15 20:03:47 +00:00
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
2017-05-31 18:09:50 +00:00
|
|
|
{{!-- Everything inside the #post tags pulls data from the post --}}
|
2014-11-11 05:02:52 +00:00
|
|
|
{{#post}}
|
|
|
|
|
2017-05-31 18:09:50 +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}}">
|
2014-07-20 14:43:44 +00:00
|
|
|
|
2017-05-31 18:09:50 +00:00
|
|
|
<header class="post-full-header">
|
|
|
|
<h1 class="post-full-title">{{title}}</h1>
|
|
|
|
</header>
|
2013-10-17 03:16:40 +00:00
|
|
|
|
2017-05-31 18:09:50 +00:00
|
|
|
{{#if feature_image}}
|
|
|
|
<figure class="post-full-image" style="background-image: url({{feature_image}})">
|
|
|
|
</figure>
|
|
|
|
{{/if}}
|
2013-10-17 03:16:40 +00:00
|
|
|
|
2017-05-31 18:09:50 +00:00
|
|
|
<section class="post-full-content">
|
|
|
|
{{content}}
|
|
|
|
</section>
|
2013-10-17 03:16:40 +00:00
|
|
|
|
2017-05-31 18:09:50 +00:00
|
|
|
</article>
|
|
|
|
|
|
|
|
</div>
|
2013-10-17 03:16:40 +00:00
|
|
|
</main>
|
2017-05-31 18:09:50 +00:00
|
|
|
|
2014-11-11 05:02:52 +00:00
|
|
|
{{/post}}
|
2017-06-12 09:01:00 +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();
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
{{/contentFor}}
|