1c5e9d9ed3
no issue - use latest casper in test fixtures - never ever use the root content folder for tests - if we start/fork Ghost for the tests, we use a tmp folder - this change is required to for an upcoming PR (#9029) - i've added a TODO to create a helper fn for stopping the ghost server, so we can cleanup the tmp folder * Care about TODO's in our channels spec - add the 1.4 compatible casper theme to fixtures - so as soon as you start Ghost, the test env will provide the content folder in /tmp something with the activated latest default casper and the 1.4 compatible old casper - there are tests which tests different logici e.g. pagination - therefor we need a different theme, we are simply using our 1.4 casper
81 lines
3.1 KiB
Handlebars
81 lines
3.1 KiB
Handlebars
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
|
|
{{!-- Document Settings --}}
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
{{!-- Base Meta --}}
|
|
<title>{{meta_title}}</title>
|
|
<meta name="HandheldFriendly" content="True" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
{{!-- Styles'n'Scripts --}}
|
|
<link rel="stylesheet" type="text/css" href="{{asset "built/screen.css"}}" />
|
|
|
|
{{!-- This tag outputes SEO meta+structured data and other important settings --}}
|
|
{{ghost_head}}
|
|
|
|
</head>
|
|
<body class="{{body_class}}">
|
|
|
|
<div class="site-wrapper">
|
|
|
|
{{!-- All the main content gets inserted here, index.hbs, post.hbs, etc --}}
|
|
{{{body}}}
|
|
|
|
{{!-- The footer at the very bottom of the screen --}}
|
|
<footer class="site-footer outer">
|
|
<div class="site-footer-content inner">
|
|
<section class="copyright"><a href="{{@blog.url}}">{{@blog.title}}</a> © {{date format="YYYY"}}</section>
|
|
<nav class="site-footer-nav">
|
|
<a href="{{@blog.url}}">Latest Posts</a>
|
|
{{#if @blog.facebook}}<a href="{{facebook_url @blog.facebook}}" target="_blank">Facebook</a>{{/if}}
|
|
{{#if @blog.twitter}}<a href="{{twitter_url @blog.twitter}}" target="_blank">Twitter</a>{{/if}}
|
|
<a href="https://ghost.org" target="_blank">Ghost</a>
|
|
</nav>
|
|
</div>
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
{{!-- The big email subscribe modal content --}}
|
|
{{#if @labs.subscribers}}
|
|
<div id="subscribe" class="subscribe-overlay">
|
|
<a class="subscribe-overlay-close" href="#"></a>
|
|
<div class="subscribe-overlay-content">
|
|
{{#if @blog.logo}}
|
|
<img class="subscribe-overlay-logo" src="{{@blog.logo}}" alt="{{@blog.title}}" />
|
|
{{/if}}
|
|
<h1 class="subscribe-overlay-title">Subscribe to {{@blog.title}}</h1>
|
|
<p class="subscribe-overlay-description">Stay up to date! Get all the latest & greatest posts delivered straight to your inbox</p>
|
|
{{subscribe_form placeholder="youremail@example.com"}}
|
|
</div>
|
|
</div>
|
|
{{/if}}
|
|
|
|
{{!-- jQuery + Fitvids, which makes all video embeds responsive --}}
|
|
<script
|
|
src="https://code.jquery.com/jquery-3.2.1.min.js"
|
|
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
|
|
crossorigin="anonymous">
|
|
</script>
|
|
<script type="text/javascript" src="{{asset "js/jquery.fitvids.js"}}"></script>
|
|
|
|
{{#if pagination.pages}}
|
|
<script>
|
|
var maxPages = parseInt('{{pagination.pages}}');
|
|
</script>
|
|
<script src="{{asset "js/infinitescroll.js"}}"></script>
|
|
{{/if}}
|
|
|
|
{{!-- The #block helper will pull in data from the #contentFor other template files. In this case, there's some JavaScript which we only want to use in post.hbs, but it needs to be included down here, after jQuery has already loaded. --}}
|
|
{{{block "scripts"}}}
|
|
|
|
{{!-- Ghost outputs important scripts and data with this tag - it should always be the very last thing before the closing body tag --}}
|
|
{{ghost_foot}}
|
|
|
|
</body>
|
|
</html>
|