2013-05-11 11:16:11 +01:00
<!DOCTYPE html>
2022-05-27 14:46:30 +08: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 11:16:11 +01:00
<head>
2017-05-15 21:03:47 +01:00
2021-03-02 21:48:32 -05:00
{{!-- Basic meta - advanced meta is output with {ghost_head} below --}}
<title> {{ meta_title }} </title>
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-04 15:45:35 -04:00
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2021-10-14 23:30:01 -04:00
2023-06-27 13:01:12 +08: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 17:50:23 +01:00
2021-03-02 21:48:32 -05:00
{{ ! - - Theme assets - use the { asset } helper to reference styles & scripts ,
this will take care of caching and cache-busting automatically --}}
2017-06-16 13:23:03 +01:00
<link rel="stylesheet" type="text/css" href=" {{ asset "built/screen.css" }} " />
2017-02-24 09:23:02 +04:00
2021-03-02 21:48:32 -05: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 02:35:53 +02:00
{{ ghost_head }}
2017-05-15 21:03:47 +01:00
</head>
2022-11-11 11:30:32 +08: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-03 20:22:45 -05:00
<div class="viewport">
2022-12-16 11:57:59 +08:00
<header id="gh-head" class="gh-head outer {{ # match @ custom .header_style "Hidden" }} is-header-hidden {{ / match }} ">
2022-11-11 11:30:32 +08:00
<div class="gh-head-inner inner">
2021-03-03 20:22:45 -05:00
<div class="gh-head-brand">
2022-12-16 11:57:59 +08:00
<a class="gh-head-logo {{ # unless @ site .logo }} no-image {{ / unless }} " href=" {{ @ site .url }} ">
2022-05-19 20:55:53 +08:00
{{ # if @ site .logo }}
2022-11-11 11:30:32 +08:00
<img src=" {{ @ site .logo }} " alt=" {{ @ site .title }} ">
2022-05-19 20:55:53 +08:00
{{ else }}
{{ @ site .title }}
{{ / if }}
</a>
2023-01-16 20:48:35 -05:00
<button class="gh-search gh-icon-btn" aria-label="Search this site" data-ghost-search> {{ > "icons/search" }} </button>
2023-11-08 08:28:55 -05:00
<button class="gh-burger" aria-label="Main Menu"></button>
2021-03-03 20:22:45 -05:00
</div>
2022-11-11 11:30:32 +08:00
<nav class="gh-head-menu">
2021-03-03 20:22:45 -05:00
{{ navigation }}
2022-11-11 11:30:32 +08:00
{{ # unless @ site .members_enabled }}
2022-11-12 02:46:24 +01:00
{{ # match @ custom .navigation_layout "Stacked" }}
2023-01-16 20:48:35 -05:00
<button class="gh-search gh-icon-btn" aria-label="Search this site" data-ghost-search> {{ > "icons/search" }} </button>
2022-11-11 11:30:32 +08:00
{{ / match }}
{{ / unless }}
</nav>
2021-03-03 20:22:45 -05:00
<div class="gh-head-actions">
2022-11-11 11:30:32 +08:00
{{ # unless @ site .members_enabled }}
2022-11-12 02:46:24 +01:00
{{ ^ match @ custom .navigation_layout "Stacked" }}
2023-12-17 15:19:26 -05:00
<button class="gh-search gh-icon-btn" aria-label="Search this site" data-ghost-search> {{ > "icons/search" }} </button>
2022-11-11 11:30:32 +08:00
{{ / match }}
{{ else }}
2023-12-17 15:19:26 -05:00
<button class="gh-search gh-icon-btn" aria-label="Search this site" data-ghost-search> {{ > "icons/search" }} </button>
2022-12-14 16:42:46 +08: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 11:30:32 +08:00
{{ else }}
2022-12-15 09:55:41 +08:00
<a class="gh-head-button" href="#/portal/account" data-portal="account">Account</a>
2022-11-11 11:30:32 +08:00
{{ / unless }}
2022-12-14 16:42:46 +08:00
</div>
2022-11-11 11:30:32 +08:00
{{ / unless }}
2021-03-03 20:22:45 -05:00
</div>
2022-11-11 11:30:32 +08:00
</div>
2021-03-03 20:22:45 -05:00
</header>
2015-02-27 14:48:15 +00:00
2021-09-22 15:24:17 +08:00
<div class="site-content">
2021-03-02 21:48:32 -05:00
{{!-- All other templates get inserted here, index.hbs, post.hbs, etc --}}
2015-02-27 14:48:15 +00:00
{{{ body }}}
2021-09-22 15:24:17 +08:00
</div>
2015-02-27 14:48:15 +00:00
2021-03-03 20:22:45 -05:00
{{!-- The global footer at the very bottom of the screen --}}
<footer class="site-footer outer">
2021-03-04 17:22:45 -05:00
<div class="inner">
2021-03-03 20:22:45 -05:00
<section class="copyright"><a href=" {{ @ site .url }} "> {{ @ site .title }} </a> © {{ date format = "YYYY" }} </section>
<nav class="site-footer-nav">
2021-03-04 17:22:45 -05:00
{{ navigation type = "secondary" }}
2021-03-03 20:22:45 -05:00
</nav>
2023-03-28 16:01:24 +08:00
<div class="gh-powered-by"><a href="https://ghost.org/" target="_blank" rel="noopener">Powered by Ghost</a></div>
2021-03-03 20:22:45 -05:00
</div>
</footer>
2015-02-27 14:48:15 +00:00
2021-03-03 20:22:45 -05:00
</div>
{{!-- /.viewport --}}
2013-08-28 21:07:18 +02:00
2023-08-23 16:55:41 +08:00
{{ # is "post, page" }}
{{ > "lightbox" }}
{{ / is }}
2019-10-21 12:43:34 +07:00
2021-03-02 21:48:32 -05: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-03 20:22:45 -05:00
$(document).ready(function () {
// Mobile Menu Trigger
$('.gh-burger').click(function () {
$('body').toggleClass('gh-head-open');
2021-03-02 21:48:32 -05:00
});
2021-03-04 17:22:45 -05:00
// FitVids - Makes video embeds responsive
$(".gh-content").fitVids();
2021-03-03 20:22:45 -05:00
});
2021-03-02 21:48:32 -05:00
</script>
2017-05-15 21:03:47 +01:00
2021-03-02 21:48:32 -05: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 22:12:24 +01:00
2013-05-11 11:16:11 +01:00
</body>
2013-11-28 13:41:52 +00:00
</html>