our-status-site-theme/default.hbs

48 lines
1.8 KiB
Handlebars
Raw Normal View History

2019-03-14 15:45:43 +00:00
<!DOCTYPE html>
<html lang="{{lang}}">
<head>
{{> theme_head}}
{{!-- Ghost outputs important style and meta data with this tag --}}
{{ghost_head}}
</head>
<body class="{{body_class}} {{#post}}{{#has tag="#dark-mode"}} dark-mode {{/has}}{{/post}} nav-closed">
2019-03-14 15:45:43 +00:00
<div class="main-container">
{{> theme_header}}
{{> theme_subheader}}
{{{body}}}
{{> theme_footer}}
</div>
{{!-- Ghost Content API --}}
<script type="text/javascript" src="https://unpkg.com/@tryghost/content-api@1.0.0/umd/content-api.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/ghost-search@1.0.1/dist/ghost-search.min.js"></script>
{{!-- The main JavaScript file --}}
{{#if pagination.pages}}
<script>
var maxPages = parseInt('{{pagination.pages}}');
</script>
{{/if}}
<!-- 3rd party scripts -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
2019-04-18 09:22:30 +00:00
<script type="text/javascript" src="{{asset "js/dev.js"}}"></script>
<script src="https://unpkg.com/imagesloaded@4/imagesloaded.pkgd.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js"></script>
2019-03-14 15:45:43 +00:00
<script type="text/javascript" src="{{asset "js/main.js"}}"></script>
{{!-- Ghost outputs important scripts and data with this tag --}}
{{ghost_foot}}
</body>
</html>