74 lines
2.5 KiB
Handlebars
74 lines
2.5 KiB
Handlebars
{{!< default}}
|
|
{{!-- 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">
|
|
<nav class="site-nav">
|
|
<div class="site-nav-left">
|
|
{{#if @blog.logo}}
|
|
<a class="site-nav-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>
|
|
{{/if}}
|
|
{{#if @blog.navigation}}
|
|
{{!-- The blog navigation links from /ghost/settings/design --}}
|
|
{{navigation}}
|
|
{{/if}}
|
|
</div>
|
|
<div class="site-nav-right">
|
|
<div class="social-links">
|
|
{{#if @blog.facebook}}
|
|
<a class="social-link social-link-fb" href="{{facebook_url}}">{{> "icons/facebook"}}</a>
|
|
{{/if}}
|
|
{{#if @blog.twitter}}
|
|
<a class="social-link social-link-tw" href="{{twitter_url}}">{{> "icons/twitter"}}</a>
|
|
{{/if}}
|
|
</div>
|
|
{{#if @labs.subscribers}}
|
|
<a class="subscribe-button" href="{{@blog.url}}/subscribe/">Subscribe</a>
|
|
{{else}}
|
|
<a class="rss-button" href="http://cloud.feedly.com/#subscription/feed/{{@blog.url}}/rss/" target="_blank">{{> "icons/rss"}}</a>
|
|
{{/if}}
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
{{!-- Everything inside the #post tags pulls data from the post --}}
|
|
{{#post}}
|
|
|
|
<main id="site-main" class="site-main outer" role="main">
|
|
<div class="inner">
|
|
|
|
<article class="post-full {{post_class}} {{#unless feature_image}}no-image{{/unless}}">
|
|
|
|
<header class="post-full-header">
|
|
<h1 class="post-full-title">{{title}}</h1>
|
|
</header>
|
|
|
|
{{#if feature_image}}
|
|
<figure class="post-full-image" style="background-image: url({{feature_image}})">
|
|
</figure>
|
|
{{/if}}
|
|
|
|
<section class="post-full-content">
|
|
{{content}}
|
|
</section>
|
|
|
|
</article>
|
|
|
|
</div>
|
|
</main>
|
|
|
|
{{/post}}
|
|
|
|
{{!-- 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}}
|