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" />
2021-10-15 03:30:01 +00:00
2023-06-27 05:01:12 +00:00
{{!-- Preload scripts --}}
<link rel="preload" as="style" href=" {{ asset "built/screen.css" }} " />
<link rel="preload" as="script" href=" {{ asset "built/casper.js" }} " />
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-11-11 03:30:32 +00:00
<body class=" {{ body_class }} is-head- {{ # match @ custom .navigation_layout "Logo on cover" }} left-logo {{ else match @ custom .navigation_layout "Logo in the middle" }} middle-logo {{ else }} stacked {{ / match }} {{ # 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 }} ">
2021-03-04 01:22:45 +00:00
<div class="viewport">
2022-12-16 03:57:59 +00:00
<header id="gh-head" class="gh-head outer {{ # match @ custom .header_style "Hidden" }} is-header-hidden {{ / match }} ">
2022-11-11 03:30:32 +00:00
<div class="gh-head-inner inner">
2021-03-04 01:22:45 +00:00
<div class="gh-head-brand">
2022-12-16 03:57:59 +00:00
<a class="gh-head-logo {{ # unless @ site .logo }} no-image {{ / unless }} " href=" {{ @ site .url }} ">
2022-05-19 12:55:53 +00:00
{{ # if @ site .logo }}
2022-11-11 03:30:32 +00:00
<img src=" {{ @ site .logo }} " alt=" {{ @ site .title }} ">
2022-05-19 12:55:53 +00:00
{{ else }}
{{ @ site .title }}
{{ / if }}
</a>
2023-01-17 01:48:35 +00:00
<button class="gh-search gh-icon-btn" aria-label="Search this site" data-ghost-search> {{ > "icons/search" }} </button>
2023-11-08 13:28:55 +00:00
<button class="gh-burger" aria-label="Main Menu"></button>
2021-03-04 01:22:45 +00:00
</div>
2022-11-11 03:30:32 +00:00
<nav class="gh-head-menu">
2021-03-04 01:22:45 +00:00
{{ navigation }}
2022-11-11 03:30:32 +00:00
{{ # unless @ site .members_enabled }}
2022-11-12 01:46:24 +00:00
{{ # match @ custom .navigation_layout "Stacked" }}
2023-01-17 01:48:35 +00:00
<button class="gh-search gh-icon-btn" aria-label="Search this site" data-ghost-search> {{ > "icons/search" }} </button>
2022-11-11 03:30:32 +00:00
{{ / match }}
{{ / unless }}
</nav>
2021-03-04 01:22:45 +00:00
<div class="gh-head-actions">
2022-11-11 03:30:32 +00:00
{{ # unless @ site .members_enabled }}
2022-11-12 01:46:24 +00:00
{{ ^ match @ custom .navigation_layout "Stacked" }}
2023-12-17 20:19:26 +00:00
<button class="gh-search gh-icon-btn" aria-label="Search this site" data-ghost-search> {{ > "icons/search" }} </button>
2022-11-11 03:30:32 +00:00
{{ / match }}
{{ else }}
2023-12-17 20:19:26 +00:00
<button class="gh-search gh-icon-btn" aria-label="Search this site" data-ghost-search> {{ > "icons/search" }} </button>
2022-12-14 08:42:46 +00:00
<div class="gh-head-members">
{{ # unless @ member }}
{{ # unless @ site .members_invite_only }}
<a class="gh-head-link" href="#/portal/signin" data-portal="signin">Sign in</a>
<a class="gh-head-button" href="#/portal/signup" data-portal="signup">Subscribe</a>
{{ else }}
<a class="gh-head-button" href="#/portal/signin" data-portal="signin">Sign in</a>
{{ / unless }}
2022-11-11 03:30:32 +00:00
{{ else }}
2022-12-15 01:55:41 +00:00
<a class="gh-head-button" href="#/portal/account" data-portal="account">Account</a>
2022-11-11 03:30:32 +00:00
{{ / unless }}
2022-12-14 08:42:46 +00:00
</div>
2022-11-11 03:30:32 +00:00
{{ / unless }}
2021-03-04 01:22:45 +00:00
</div>
2022-11-11 03:30:32 +00:00
</div>
2021-03-04 01:22:45 +00:00
</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>
2023-03-28 08:01:24 +00:00
<div class="gh-powered-by"><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
2023-08-23 08:55:41 +00:00
{{ # is "post, page" }}
{{ > "lightbox" }}
{{ / is }}
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>