2013-05-11 10:16:11 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2017-05-15 20:03:47 +00:00
|
|
|
|
2016-05-08 08:50:20 +00:00
|
|
|
{{!-- Document Settings --}}
|
2013-12-28 10:41:19 +00:00
|
|
|
<meta charset="utf-8" />
|
2013-12-28 10:55:38 +00:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
2013-09-15 16:50:23 +00:00
|
|
|
|
2017-05-15 20:03:47 +00:00
|
|
|
{{!-- Base Meta --}}
|
2013-09-17 22:13:49 +00:00
|
|
|
<title>{{meta_title}}</title>
|
2013-09-04 19:45:35 +00:00
|
|
|
<meta name="HandheldFriendly" content="True" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2013-09-15 16:50:23 +00:00
|
|
|
|
2016-05-08 08:50:20 +00:00
|
|
|
{{!-- Styles'n'Scripts --}}
|
2017-05-15 20:03:47 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{asset "assets/public/screen.css"}}" />
|
2017-02-24 05:23:02 +00:00
|
|
|
|
2017-05-15 20:03:47 +00:00
|
|
|
{{!-- This tag outputes SEO meta+structured data and other important settings --}}
|
2013-08-26 00:35:53 +00:00
|
|
|
{{ghost_head}}
|
|
|
|
|
2017-05-15 20:03:47 +00:00
|
|
|
</head>
|
|
|
|
<body class="{{body_class}}">
|
2015-02-27 14:48:15 +00:00
|
|
|
|
|
|
|
<div class="site-wrapper">
|
|
|
|
|
2016-05-08 08:50:20 +00:00
|
|
|
{{!-- All the main content gets inserted here, index.hbs, post.hbs, etc --}}
|
2015-02-27 14:48:15 +00:00
|
|
|
{{{body}}}
|
|
|
|
|
2017-05-15 20:03:47 +00:00
|
|
|
{{!-- The footer at the very bottom of the screen --}}
|
|
|
|
<footer class="site-footer outer">
|
|
|
|
<div class="site-footer-content inner">
|
|
|
|
<section class="copyright"><a href="{{@blog.url}}">{{@blog.title}}</a> © {{date format="YYYY"}}</section>
|
|
|
|
<nav class="site-footer-nav">
|
|
|
|
<a href="{{@blog.url}}">Latest Posts</a>
|
|
|
|
{{#if @blog.facebook}}<a href="{{facebook_url}}">Facebook</a>{{/if}}
|
|
|
|
{{#if @blog.twitter}}<a href="{{twitter_url}}">Twitter</a>{{/if}}
|
|
|
|
<a href="https://ghost.org" target="_blank">About Ghost</a>
|
|
|
|
</nav>
|
|
|
|
</div>
|
2015-02-27 14:48:15 +00:00
|
|
|
</footer>
|
|
|
|
|
|
|
|
</div>
|
2013-08-28 19:07:18 +00:00
|
|
|
|
2017-05-15 20:03:47 +00:00
|
|
|
{{!-- jQuery + Fitvids, which makes all video embeds responsive --}}
|
2016-10-13 23:03:11 +00:00
|
|
|
<script type="text/javascript" src="//code.jquery.com/jquery-1.12.0.min.js"></script>
|
2013-11-28 13:41:52 +00:00
|
|
|
<script type="text/javascript" src="{{asset "js/jquery.fitvids.js"}}"></script>
|
2017-05-15 20:03:47 +00:00
|
|
|
<script>
|
|
|
|
|
|
|
|
// TODO: Only include this on post.hbs - preferably put in floating-header.hbs and pass up to ghost_foot via block helper or similar.
|
|
|
|
$(function() {
|
2017-05-31 18:09:50 +00:00
|
|
|
var $postContent = $(".post-full-content");
|
|
|
|
$postContent.fitVids();
|
|
|
|
|
2017-05-15 20:03:47 +00:00
|
|
|
$(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>
|
|
|
|
|
|
|
|
{{!-- Ghost outputs important scripts and data with this tag - it should always be the very last thing before the closing body tag --}}
|
|
|
|
{{ghost_foot}}
|
2013-09-02 21:12:24 +00:00
|
|
|
|
2013-05-11 10:16:11 +00:00
|
|
|
</body>
|
2013-11-28 13:41:52 +00:00
|
|
|
</html>
|