Vivid-Casper/default.hbs

58 lines
2.2 KiB
Handlebars
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
2017-05-15 20:03:47 +00:00
{{!-- Document Settings --}}
<meta charset="utf-8" />
<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 --}}
<title>{{meta_title}}</title>
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2013-09-15 16:50:23 +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 --}}
{{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">
{{!-- 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> &copy; {{date format="YYYY"}}</section>
<nav class="site-footer-nav">
<a href="{{@blog.url}}">Latest Posts</a>
2017-06-13 12:48:06 +00:00
{{#if @blog.facebook}}<a href="{{facebook_url @blog.facebook}}" target="_blank">Facebook</a>{{/if}}
{{#if @blog.twitter}}<a href="{{twitter_url @blog.twitter}}" target="_blank">Twitter</a>{{/if}}
2017-06-05 11:19:29 +00:00
<a href="https://ghost.org" target="_blank">Ghost</a>
2017-05-15 20:03:47 +00:00
</nav>
</div>
2015-02-27 14:48:15 +00:00
</footer>
</div>
2017-05-15 20:03:47 +00:00
{{!-- jQuery + Fitvids, which makes all video embeds responsive --}}
2017-06-08 07:19:22 +00:00
<script
src="//code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha256-k2WSCIexGzOj3Euiig+TlR8gA0EmPjuc79OEeY5L45g="
crossorigin="anonymous"></script>
<script type="text/javascript" src="{{asset "js/jquery.fitvids.js"}}"></script>
2017-05-15 20:03:47 +00:00
2017-06-08 07:19:22 +00:00
{{!-- The #block helper will pull in data from the #contentFor other template files. In this case, there's some JavaScript which we only want to use in post.hbs, but it needs to be included down here, after jQuery has already loaded. --}}
{{{block "scripts"}}}
2017-05-15 20:03:47 +00:00
{{!-- Ghost outputs important scripts and data with this tag - it should always be the very last thing before the closing body tag --}}
{{ghost_foot}}
</body>
</html>