79 lines
2.6 KiB
Handlebars
79 lines
2.6 KiB
Handlebars
<!DOCTYPE html>
|
|
<html lang="{{@site.lang}}">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
<title>{{meta_title}}</title>
|
|
<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}}
|
|
{{!-- Outputs SEO meta+structured data and important settings, should always be in <head> --}}
|
|
</head>
|
|
<body class="{{body_class}}">
|
|
<div class="viewport">
|
|
|
|
<header class="site-head">
|
|
<div class="site-head-container inner">
|
|
<nav class="site-head-left">
|
|
{{navigation}}
|
|
</nav>
|
|
<div class="site-head-center">
|
|
{{#if @site.logo}}
|
|
<a class="site-head-logo" href="{{@site.url}}"><img src="{{@site.logo}}" alt="{{@site.title}}" /></a>
|
|
{{else}}
|
|
<a class="site-head-logo" href="{{@site.url}}">{{@site.title}}</a>
|
|
{{/if}}
|
|
</div>
|
|
<div class="site-head-right">
|
|
<div class="social-links">
|
|
{{#if @site.facebook}}
|
|
<a href="{{facebook_url @site.facebook}}" title="Facebook" target="_blank" rel="noopener">Facebook</a>
|
|
{{/if}}
|
|
{{#if @site.twitter}}
|
|
<a href="{{twitter_url @site.twitter}}" title="Twitter" target="_blank" rel="noopener">Twitter</a>
|
|
{{/if}}
|
|
<a href="https://feedly.com/i/subscription/feed/{{@site.url}}/rss/" title="RSS" target="_blank" rel="noopener">RSS</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="site-main">
|
|
<div class="site-main-container inner">
|
|
|
|
{{{body}}}
|
|
{{!-- All content gets inserted here, index.hbs, post.hbs, etc --}}
|
|
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="site-foot">
|
|
<div class="site-foot-container inner">
|
|
© {{date format="YYYY"}} <a href="{{@site.url}}">{{@site.title}}</a> — Published with <a href="https://ghost.org" target="_blank" rel="noopener">Ghost</a>
|
|
</div>
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
|
|
|
|
{{#if pagination.pages}}
|
|
<script>
|
|
var maxPages = parseInt('{{pagination.pages}}');
|
|
</script>
|
|
<script src="{{asset "built/infinitescroll.js"}}"></script>
|
|
{{/if}}
|
|
|
|
|
|
{{{block "scripts"}}}
|
|
{{!-- The #block helper will pull in data from the #contentFor other template files --}}
|
|
|
|
{{ghost_foot}}
|
|
{{!-- Outputs important scripts - should always be included before closing body tag --}}
|
|
|
|
</body>
|
|
</html> |