102 lines
3.8 KiB
Handlebars
102 lines
3.8 KiB
Handlebars
<!DOCTYPE html>
|
|
<html lang="{{@site.locale}}">
|
|
<head>
|
|
|
|
{{!-- Basic meta - advanced meta is output with {ghost_head} below --}}
|
|
<title>{{meta_title}}</title>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="HandheldFriendly" content="True" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
{{!-- Theme assets - use the {asset} helper to reference styles & scripts,
|
|
this will take care of caching and cache-busting automatically --}}
|
|
<link rel="stylesheet" type="text/css" href="{{asset "built/screen.css"}}" />
|
|
|
|
{{!-- 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 --}}
|
|
{{ghost_head}}
|
|
|
|
</head>
|
|
<body class="{{body_class}}">
|
|
<div class="viewport">
|
|
|
|
<header id="gh-head" class="gh-head {{#if @site.cover_image}}has-cover{{/if}}">
|
|
<nav class="gh-head-inner inner gh-container">
|
|
|
|
<div class="gh-head-brand">
|
|
<a class="gh-head-logo" href="{{@site.url}}">
|
|
{{#if @site.logo}}
|
|
<img src="{{@site.logo}}" alt="{{@site.title}}" />
|
|
{{else}}
|
|
{{@site.title}}
|
|
{{/if}}
|
|
</a>
|
|
<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">
|
|
<div class="gh-social">
|
|
{{#if @site.twitter}}
|
|
<a class="gh-social-twitter" href="{{twitter_url @site.twitter}}" title="Twitter" target="_blank" rel="noopener">{{> "icons/twitter"}}</a>
|
|
{{/if}}
|
|
</div>
|
|
|
|
{{#unless @member}}
|
|
<a class="gh-head-button" href="#/portal">Subscribe</a>
|
|
{{else}}
|
|
<a class="gh-head-button" href="#/portal/account">Account</a>
|
|
{{/unless}}
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
{{!-- All other templates get inserted here, index.hbs, post.hbs, etc --}}
|
|
{{{body}}}
|
|
</main>
|
|
|
|
{{!-- The global footer at the very bottom of the screen --}}
|
|
<footer class="site-footer outer">
|
|
<div class="site-footer-content inner">
|
|
<section class="copyright"><a href="{{@site.url}}">{{@site.title}}</a> © {{date format="YYYY"}}</section>
|
|
<nav class="site-footer-nav">
|
|
<a href="{{@site.url}}">Latest Posts</a>
|
|
{{#if @site.facebook}}<a href="{{facebook_url @site.facebook}}" target="_blank" rel="noopener">Facebook</a>{{/if}}
|
|
{{#if @site.twitter}}<a href="{{twitter_url @site.twitter}}" target="_blank" rel="noopener">Twitter</a>{{/if}}
|
|
<a href="https://ghost.org/" target="_blank" rel="noopener">Powered by Ghost</a>
|
|
</nav>
|
|
</div>
|
|
</footer>
|
|
|
|
</div>
|
|
{{!-- /.viewport --}}
|
|
|
|
|
|
{{!-- 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>
|
|
$(document).ready(function () {
|
|
// Mobile Menu Trigger
|
|
$('.gh-burger').click(function () {
|
|
$('body').toggleClass('gh-head-open');
|
|
});
|
|
});
|
|
</script>
|
|
|
|
{{!-- Ghost outputs required functional scripts with this tag - it should always be the last thing before the closing body tag --}}
|
|
{{ghost_foot}}
|
|
|
|
</body>
|
|
</html>
|