mirror of
https://github.com/aljazceru/Journal-ghost.git
synced 2025-12-28 10:34:23 +01:00
98 lines
3.3 KiB
Handlebars
98 lines
3.3 KiB
Handlebars
<!DOCTYPE html>
|
|
<html lang="{{@site.locale}}">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{meta_title}}</title>
|
|
<link rel="preload" href="/fonts/mulish-var.woff2" as="font" type="font/woff2" crossOrigin="anonymous">
|
|
<link rel="stylesheet" href="{{asset "built/screen.css"}}">
|
|
|
|
{{ghost_head}}
|
|
</head>
|
|
|
|
<body class="{{body_class}} is-head-b--a_n">
|
|
<div class="gh-site">
|
|
<header id="gh-head" class="gh-head gh-outer">
|
|
<div class="gh-head-inner">
|
|
<div class="gh-head-brand">
|
|
<div class="gh-head-brand-wrapper">
|
|
<a class="gh-head-logo" href="{{@site.url}}">
|
|
{{#if @site.logo}}
|
|
<img src="{{@site.logo}}" alt="{{@site.title}}">
|
|
{{else}}
|
|
{{@site.title}}
|
|
{{/if}}
|
|
</a>
|
|
|
|
<span class="gh-head-description">{{@site.description}}</span>
|
|
</div>
|
|
<button class="gh-burger"></button>
|
|
</div>
|
|
|
|
<nav class="gh-head-menu">
|
|
{{navigation}}
|
|
</nav>
|
|
|
|
<div class="gh-head-actions">
|
|
{{#unless @member}}
|
|
<a class="gh-head-btn u-hover" href="#/portal/signup">
|
|
Subscribe
|
|
<span>{{> icons/chevron-right}}</span>
|
|
<span>{{> icons/chevron-right}}</span>
|
|
</a>
|
|
{{else}}
|
|
<a class="gh-head-btn" href="#/portal/account">Account</a>
|
|
{{/unless}}
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
{{{body}}}
|
|
|
|
<div class="gh-subscribe-wrapper gh-canvas">
|
|
<section class="gh-subscribe">
|
|
<h3 class="gh-subscribe-title">Subscribe to {{@site.title}}</h3>
|
|
|
|
<div class="gh-subscribe-description">Sign up now to get access to the library of members-only issues.</div>
|
|
|
|
<a class="gh-subscribe-form-input u-hover" href="#/portal/signup">
|
|
Jamie Larson
|
|
<div class="gh-subscribe-btn">
|
|
<div class="u-hover-inner">
|
|
Subscribe
|
|
<span>{{> icons/chevron-right}}</span>
|
|
<span>{{> icons/chevron-right}}</span>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</section>
|
|
</div>
|
|
|
|
<footer class="gh-foot gh-outer">
|
|
<div class="gh-foot-inner gh-inner">
|
|
<div class="gh-copyright">
|
|
{{@site.title}} © {{date format="YYYY"}}
|
|
</div>
|
|
|
|
<nav class="gh-foot-menu">
|
|
{{navigation type="secondary"}}
|
|
</nav>
|
|
|
|
<div class="gh-powered-by">
|
|
<a href="https://ghost.org/" target="_blank" rel="noopener">Powered by Ghost</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
|
|
{{#is "post, page"}}
|
|
{{> pswp}}
|
|
{{/is}}
|
|
|
|
<script src="{{asset "built/main.min.js"}}"></script>
|
|
|
|
{{ghost_foot}}
|
|
</body>
|
|
|
|
</html> |