2013-05-11 10:16:11 +00:00
|
|
|
<!DOCTYPE html>
|
2022-05-27 06:46:30 +00:00
|
|
|
<html lang="{{@site.locale}}"{{#match @custom.color_scheme "Dark"}} class="dark-mode"{{else match @custom.color_scheme "Auto"}} class="auto-color"{{/match}}>
|
2013-05-11 10:16:11 +00:00
|
|
|
<head>
|
2017-05-15 20:03:47 +00:00
|
|
|
|
2021-03-03 02:48:32 +00:00
|
|
|
{{!-- Basic meta - advanced meta is output with {ghost_head} below --}}
|
|
|
|
<title>{{meta_title}}</title>
|
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-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
|
|
|
|
2021-03-03 02:48:32 +00:00
|
|
|
{{!-- Theme assets - use the {asset} helper to reference styles & scripts,
|
|
|
|
this will take care of caching and cache-busting automatically --}}
|
2017-06-16 12:23:03 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{asset "built/screen.css"}}" />
|
2017-02-24 05:23:02 +00:00
|
|
|
|
2021-03-03 02:48:32 +00:00
|
|
|
{{!-- This tag outputs all your advanced SEO meta, structured data, and other important settings,
|
|
|
|
it should always be the last tag before the closing head tag --}}
|
2013-08-26 00:35:53 +00:00
|
|
|
{{ghost_head}}
|
|
|
|
|
2017-05-15 20:03:47 +00:00
|
|
|
</head>
|
2022-05-26 06:33:06 +00:00
|
|
|
<body class="{{body_class}}{{#match @custom.title_font "=" "Elegant serif"}} has-serif-title{{/match}}{{#match @custom.body_font "=" "Modern sans-serif"}} has-sans-body{{/match}}{{#if @custom.show_publication_cover}} has-cover{{/if}}{{#is "home"}}{{#unless @custom.show_logo_in_navigation}} no-logo{{/unless}}{{/is}}">
|
2021-03-04 01:22:45 +00:00
|
|
|
<div class="viewport">
|
|
|
|
|
2022-05-14 05:23:02 +00:00
|
|
|
<header id="gh-head" class="gh-head outer">
|
2022-05-06 06:12:11 +00:00
|
|
|
<nav class="gh-head-inner inner">
|
2021-03-04 01:22:45 +00:00
|
|
|
|
|
|
|
<div class="gh-head-brand">
|
2022-05-19 12:55:53 +00:00
|
|
|
<a class="gh-head-logo{{#unless @site.logo}} no-image{{/unless}}" href="{{@site.url}}">
|
|
|
|
{{#if @site.logo}}
|
|
|
|
<img src="{{@site.logo}}" alt="{{@site.title}}" />
|
|
|
|
{{else}}
|
|
|
|
{{@site.title}}
|
|
|
|
{{/if}}
|
|
|
|
</a>
|
2021-03-04 01:22:45 +00:00
|
|
|
<a class="gh-burger" role="button">
|
|
|
|
<div class="gh-burger-box">
|
|
|
|
<div class="gh-burger-inner"></div>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="gh-head-menu">
|
|
|
|
{{navigation}}
|
|
|
|
</div>
|
|
|
|
<div class="gh-head-actions">
|
2022-05-26 05:44:38 +00:00
|
|
|
<div class="gh-social">
|
|
|
|
{{#if @site.facebook}}
|
|
|
|
<a class="gh-social-link gh-social-facebook" href="{{facebook_url @site.facebook}}" title="Facebook" target="_blank" rel="noopener">{{> "icons/facebook"}}</a>
|
|
|
|
{{/if}}
|
|
|
|
{{#if @site.twitter}}
|
|
|
|
<a class="gh-social-link gh-social-twitter" href="{{twitter_url @site.twitter}}" title="Twitter" target="_blank" rel="noopener">{{> "icons/twitter"}}</a>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
2022-05-26 08:08:10 +00:00
|
|
|
{{#if @site.members_enabled}}
|
|
|
|
{{#unless @member}}
|
|
|
|
<a class="gh-head-button" href="#/portal/signup" data-portal="signup">Subscribe</a>
|
|
|
|
{{else}}
|
|
|
|
<a class="gh-head-button" href="#/portal/account" data-portal="account">Account</a>
|
|
|
|
{{/unless}}
|
|
|
|
{{/if}}
|
2021-03-04 01:22:45 +00:00
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
</header>
|
2015-02-27 14:48:15 +00:00
|
|
|
|
2021-09-22 07:24:17 +00:00
|
|
|
<div class="site-content">
|
2021-03-03 02:48:32 +00:00
|
|
|
{{!-- All other templates get inserted here, index.hbs, post.hbs, etc --}}
|
2015-02-27 14:48:15 +00:00
|
|
|
{{{body}}}
|
2021-09-22 07:24:17 +00:00
|
|
|
</div>
|
2015-02-27 14:48:15 +00:00
|
|
|
|
2021-03-04 01:22:45 +00:00
|
|
|
{{!-- The global footer at the very bottom of the screen --}}
|
|
|
|
<footer class="site-footer outer">
|
2021-03-04 22:22:45 +00:00
|
|
|
<div class="inner">
|
2021-03-04 01:22:45 +00:00
|
|
|
<section class="copyright"><a href="{{@site.url}}">{{@site.title}}</a> © {{date format="YYYY"}}</section>
|
|
|
|
<nav class="site-footer-nav">
|
2021-03-04 22:22:45 +00:00
|
|
|
{{navigation type="secondary"}}
|
2021-03-04 01:22:45 +00:00
|
|
|
</nav>
|
2021-03-04 22:22:45 +00:00
|
|
|
<div><a href="https://ghost.org/" target="_blank" rel="noopener">Powered by Ghost</a></div>
|
2021-03-04 01:22:45 +00:00
|
|
|
</div>
|
|
|
|
</footer>
|
2015-02-27 14:48:15 +00:00
|
|
|
|
2021-03-04 01:22:45 +00:00
|
|
|
</div>
|
|
|
|
{{!-- /.viewport --}}
|
2013-08-28 19:07:18 +00:00
|
|
|
|
2019-10-21 05:43:34 +00:00
|
|
|
|
2021-03-03 02:48:32 +00:00
|
|
|
{{!-- Scripts - handle member signups, responsive videos, infinite scroll, floating headers, and galleries --}}
|
|
|
|
<script
|
|
|
|
src="https://code.jquery.com/jquery-3.5.1.min.js"
|
|
|
|
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
|
|
|
|
crossorigin="anonymous">
|
|
|
|
</script>
|
|
|
|
<script src="{{asset "built/casper.js"}}"></script>
|
|
|
|
<script>
|
2021-03-04 01:22:45 +00:00
|
|
|
$(document).ready(function () {
|
|
|
|
// Mobile Menu Trigger
|
|
|
|
$('.gh-burger').click(function () {
|
|
|
|
$('body').toggleClass('gh-head-open');
|
2021-03-03 02:48:32 +00:00
|
|
|
});
|
2021-03-04 22:22:45 +00:00
|
|
|
// FitVids - Makes video embeds responsive
|
|
|
|
$(".gh-content").fitVids();
|
2021-03-04 01:22:45 +00:00
|
|
|
});
|
2021-03-03 02:48:32 +00:00
|
|
|
</script>
|
2017-05-15 20:03:47 +00:00
|
|
|
|
2021-03-03 02:48:32 +00:00
|
|
|
{{!-- Ghost outputs required functional scripts with this tag - it should always be the 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>
|