53 lines
1.7 KiB
HTML
53 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html class="no-js" lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
|
|
<title>Ghost</title>
|
|
|
|
{{content-for "head"}}
|
|
|
|
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1, minimal-ui, viewport-fit=cover" />
|
|
<meta name="pinterest" content="nopin" />
|
|
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
<meta name="application-name" content="Ghost" />
|
|
<meta name="apple-mobile-web-app-title" content="Ghost" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
|
|
|
<link rel="shortcut icon" href="assets/img/favicon.ico" />
|
|
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon.png" />
|
|
|
|
<!-- variables that we don't want postcss-custom-properties to remove -->
|
|
<style>
|
|
:root {
|
|
--editor-sidebar-width: 0px;
|
|
}
|
|
</style>
|
|
|
|
<link integrity="" rel="stylesheet" href="{{rootURL}}assets/vendor.css">
|
|
<link integrity="" rel="stylesheet" href="{{rootURL}}assets/ghost.css" title="light">
|
|
|
|
{{content-for "head-footer"}}
|
|
</head>
|
|
<body>
|
|
|
|
<div class="ember-load-indicator">
|
|
<div class="gh-loading-content">
|
|
<video width="100" height="100" loop autoplay muted playsinline preload="metadata" style="width: 100px; height: 100px;">
|
|
<source src="assets/videos/logo-loader.mp4" type="video/mp4" />
|
|
<div class="gh-loading-spinner"></div>
|
|
</video>
|
|
</div>
|
|
</div>
|
|
|
|
{{content-for "body"}}
|
|
|
|
{{content-for "body-footer"}}
|
|
|
|
<script src="{{rootURL}}assets/vendor.js"></script>
|
|
<script src="{{rootURL}}assets/ghost.js"></script>
|
|
</body>
|
|
</html>
|