e95293cc22
refs https://github.com/TryGhost/Team/issues/509
refs b0f80be408
- @site.lang property is being deprecated with Ghsot 4.0 and @site.locale is advised to be used instead
93 lines
3.5 KiB
Handlebars
93 lines
3.5 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="site-wrapper">
|
|
|
|
{{!-- All other templates get inserted here, index.hbs, post.hbs, etc --}}
|
|
{{{body}}}
|
|
|
|
{{!-- 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>
|
|
|
|
|
|
{{!-- 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>
|
|
// Parse the URL parameter
|
|
function getParameterByName(name, url) {
|
|
if (!url) url = window.location.href;
|
|
name = name.replace(/[\[\]]/g, "\\$&");
|
|
var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
|
|
results = regex.exec(url);
|
|
if (!results) return null;
|
|
if (!results[2]) return '';
|
|
return decodeURIComponent(results[2].replace(/\+/g, " "));
|
|
}
|
|
|
|
// Give the parameter a variable name
|
|
var action = getParameterByName('action');
|
|
var success = getParameterByName('success');
|
|
|
|
$(document).ready(function () {
|
|
if (action == 'subscribe' && (success === null || success === 'true')) {
|
|
$('body').addClass('subscribe-success');
|
|
}
|
|
|
|
if (action == 'subscribe' && success === 'false') {
|
|
$('body').addClass('subscribe-failure');
|
|
}
|
|
|
|
$('.subscribe-notification .subscribe-close-button').click(function () {
|
|
$('.subscribe-notification').addClass('close');
|
|
});
|
|
|
|
// Reset form on opening subscrion overlay
|
|
$('.subscribe-button').click(function() {
|
|
$('.subscribe-overlay form').removeClass();
|
|
$('.subscribe-email').val('');
|
|
});
|
|
});
|
|
</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>
|