ghost_leaders_theme/default.hbs

95 lines
2.7 KiB
Handlebars

<!DOCTYPE html>
<html lang="{{@site.locale}}">
<head>
<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" />
<link rel="stylesheet" type="text/css" href="{{asset "built/screen.css"}}" />
{{ghost_head}}
</head>
<body class="bg-slate-800 text-stone-100 font-sans leading-normal tracking-normal dark {{body_class}}">
<header class="w-full flex flex-col md:flex-row p-5 content-center">
<div class="flex basis-1/3 place-content-center md:place-content-start place-items-center flex-row">
<a class="gh-head-logo" href="{{@site.url}}">
{{#if @site.logo}}
<img src="{{@site.logo}}" alt="{{@site.title}}" />
{{else}}
{{@site.title}}
{{/if}}
</a>
</div>
<nav class="flex basis-1/3 place-content-center place-items-center flex-row">
{{navigation}}
</nav>
<div class="flex basis-1/3 place-content-center md:place-content-end place-items-center flex-row">
{{#if @site.secondary_navigation}}
{{navigation type="secondary"}}
{{/if}}
</div>
</header>
<main class="container m-auto mt-10">
{{{body}}}
</main>
<footer class="gh-foot">
<div class="gh-container">
<div class="gh-foot-menu">
{{navigation}}
</div>
<div class="gh-foot-meta">
Published with <a href="https://ghost.org" target="_blank" rel="noopener">Ghost</a>
</div>
</div>
</footer>
{{!-- <foot> --}}
<script src="{{asset "built/jquery-3.4.1.min.js"}}"></script>
{{#if pagination.pages}}
<script>
var maxPages = parseInt('{{pagination.pages}}');
</script>
<script src="{{asset "built/infinitescroll.js"}}"></script>
{{/if}}
<script>
$(document).ready(function () {
// Mobile Menu Trigger
$('.gh-burger').click(function () {
$('body').toggleClass('gh-head-open');
});
});
</script>
{{#is "post, page"}}
<script src="{{asset "built/jquery.fitvids.js"}}"></script>
<script>
var images = document.querySelectorAll('.kg-gallery-image img');
images.forEach(function (image) {
var container = image.closest('.kg-gallery-image');
var width = image.attributes.width.value;
var height = image.attributes.height.value;
var ratio = width / height;
container.style.flex = ratio + ' 1 0%';
});
$(document).ready(function () {
var $postContent = $(".gh-content");
$postContent.fitVids();
});
</script>
{{/is}}
{{ghost_foot}}
{{!-- Outputs important scripts - should always be included before closing body tag --}}
</body>
</html>