2013-05-11 11:16:11 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2013-08-10 15:06:01 +02:00
|
|
|
{{! Document Settings }}
|
2013-12-28 16:11:19 +05:30
|
|
|
<meta charset="utf-8" />
|
2013-12-28 16:25:38 +05:30
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
2013-09-15 17:50:23 +01:00
|
|
|
|
2013-08-10 15:06:01 +02:00
|
|
|
{{! Page Meta }}
|
2013-09-17 23:13:49 +01:00
|
|
|
<title>{{meta_title}}</title>
|
|
|
|
<meta name="description" content="{{meta_description}}" />
|
2013-08-25 00:57:39 +02:00
|
|
|
|
2013-09-04 15:45:35 -04:00
|
|
|
<meta name="HandheldFriendly" content="True" />
|
|
|
|
<meta name="MobileOptimized" content="320" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2013-09-15 17:50:23 +01:00
|
|
|
|
2014-01-12 21:52:21 +00:00
|
|
|
<link rel="shortcut icon" href="{{asset "favicon.ico"}}">
|
|
|
|
|
2013-08-10 15:06:01 +02:00
|
|
|
{{! Styles'n'Scripts }}
|
2013-11-28 13:41:52 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{asset "css/screen.css"}}" />
|
2013-10-31 19:34:00 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Noto+Serif:400,700,400italic|Open+Sans:700,400" />
|
2013-09-15 17:50:23 +01:00
|
|
|
|
2013-08-26 02:35:53 +02:00
|
|
|
{{! Ghost outputs important style and meta data with this tag }}
|
|
|
|
{{ghost_head}}
|
|
|
|
</head>
|
|
|
|
<body class="{{body_class}}">
|
|
|
|
|
2013-08-26 20:26:34 +02:00
|
|
|
{{! Everything else gets inserted here }}
|
2013-05-11 11:16:11 +01:00
|
|
|
{{{body}}}
|
2013-08-10 15:06:01 +02:00
|
|
|
|
2013-09-01 21:45:19 +02:00
|
|
|
<footer class="site-footer">
|
2013-09-04 18:04:33 +02:00
|
|
|
<a class="subscribe icon-feed" href="{{@blog.url}}/rss/"><span class="tooltip">Subscribe!</span></a>
|
2013-08-28 21:07:18 +02:00
|
|
|
<div class="inner">
|
2014-01-07 12:31:32 -07:00
|
|
|
<section class="copyright">All content copyright <a href="{{@blog.url}}/">{{@blog.title}}</a> © {{date format="YYYY"}} • All rights reserved.</section>
|
2013-10-06 17:49:48 +02:00
|
|
|
<section class="poweredby">Proudly published with <a class="icon-ghost" href="http://ghost.org">Ghost</a></section>
|
2013-08-28 21:07:18 +02:00
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
|
|
|
|
{{! Ghost outputs important scripts and data with this tag }}
|
|
|
|
{{ghost_foot}}
|
2013-08-26 02:35:53 +02:00
|
|
|
|
2013-09-02 22:12:24 +01:00
|
|
|
{{! The main JavaScript file for Casper }}
|
2013-11-28 13:41:52 +00:00
|
|
|
<script type="text/javascript" src="{{asset "js/jquery.fitvids.js"}}"></script>
|
|
|
|
<script type="text/javascript" src="{{asset "js/index.js"}}"></script>
|
2013-09-02 22:12:24 +01:00
|
|
|
|
2013-05-11 11:16:11 +01:00
|
|
|
</body>
|
2013-11-28 13:41:52 +00:00
|
|
|
</html>
|