2013-05-11 06:16:11 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2016-05-08 04:50:20 -04:00
|
|
|
{{!-- Document Settings --}}
|
2013-12-28 05:41:19 -05:00
|
|
|
<meta charset="utf-8" />
|
2013-12-28 05:55:38 -05:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
2013-09-15 12:50:23 -04:00
|
|
|
|
2016-05-08 04:50:20 -04:00
|
|
|
{{!-- Page Meta --}}
|
2013-09-17 18:13:49 -04:00
|
|
|
<title>{{meta_title}}</title>
|
|
|
|
<meta name="description" content="{{meta_description}}" />
|
2013-08-24 18:57:39 -04:00
|
|
|
|
2016-05-08 04:50:20 -04:00
|
|
|
{{!-- Mobile Meta --}}
|
2013-09-04 15:45:35 -04:00
|
|
|
<meta name="HandheldFriendly" content="True" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2013-09-15 12:50:23 -04:00
|
|
|
|
2016-05-08 04:50:20 -04:00
|
|
|
{{!-- Brand icon --}}
|
2014-01-12 16:52:21 -05:00
|
|
|
<link rel="shortcut icon" href="{{asset "favicon.ico"}}">
|
|
|
|
|
2016-05-08 04:50:20 -04:00
|
|
|
{{!-- Styles'n'Scripts --}}
|
2013-11-28 08:41:52 -05:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{asset "css/screen.css"}}" />
|
2014-09-25 09:41:04 -04:00
|
|
|
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Merriweather:300,700,700italic,300italic|Open+Sans:700,400" />
|
2013-09-15 12:50:23 -04:00
|
|
|
|
2016-05-08 04:50:20 -04:00
|
|
|
{{!-- Ghost outputs important style and meta data with this tag --}}
|
2013-08-25 20:35:53 -04:00
|
|
|
{{ghost_head}}
|
|
|
|
</head>
|
2015-02-27 09:48:15 -05:00
|
|
|
<body class="{{body_class}} nav-closed">
|
2013-08-25 20:35:53 -04:00
|
|
|
|
2016-05-08 04:50:20 -04:00
|
|
|
{{!-- The blog navigation links --}}
|
2015-02-27 09:48:15 -05:00
|
|
|
{{navigation}}
|
|
|
|
|
|
|
|
<div class="site-wrapper">
|
|
|
|
|
2016-05-08 04:50:20 -04:00
|
|
|
{{!-- All the main content gets inserted here, index.hbs, post.hbs, etc --}}
|
2015-02-27 09:48:15 -05:00
|
|
|
{{{body}}}
|
|
|
|
|
2016-05-08 04:50:20 -04:00
|
|
|
{{!-- The tiny footer at the very bottom --}}
|
2015-02-27 09:48:15 -05:00
|
|
|
<footer class="site-footer clearfix">
|
|
|
|
<section class="copyright"><a href="{{@blog.url}}">{{@blog.title}}</a> © {{date format="YYYY"}}</section>
|
|
|
|
<section class="poweredby">Proudly published with <a href="https://ghost.org">Ghost</a></section>
|
|
|
|
</footer>
|
|
|
|
|
|
|
|
</div>
|
2013-08-28 15:07:18 -04:00
|
|
|
|
2015-10-19 04:28:22 -04:00
|
|
|
{{!-- jQuery needs to come before `{{ghost_foot}}` so that jQuery can be used in code injection --}}
|
2016-10-13 19:03:11 -04:00
|
|
|
<script type="text/javascript" src="//code.jquery.com/jquery-1.12.0.min.js"></script>
|
2016-05-08 04:50:20 -04:00
|
|
|
{{!-- Ghost outputs important scripts and data with this tag --}}
|
2013-08-28 15:07:18 -04:00
|
|
|
{{ghost_foot}}
|
2016-05-08 04:50:20 -04:00
|
|
|
{{!-- Fitvids makes video embeds responsive and awesome --}}
|
2013-11-28 08:41:52 -05:00
|
|
|
<script type="text/javascript" src="{{asset "js/jquery.fitvids.js"}}"></script>
|
2016-05-08 04:50:20 -04:00
|
|
|
{{!-- The main JavaScript file for Casper --}}
|
2013-11-28 08:41:52 -05:00
|
|
|
<script type="text/javascript" src="{{asset "js/index.js"}}"></script>
|
2013-09-02 17:12:24 -04:00
|
|
|
|
2013-05-11 06:16:11 -04:00
|
|
|
</body>
|
2013-11-28 08:41:52 -05:00
|
|
|
</html>
|