Ghost/ghost/admin/app/index.html

62 lines
2.4 KiB
HTML
Raw Normal View History

2015-02-13 06:22:27 +03:00
<!doctype html>
<!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9" lang="en"><![endif]-->
<!--[if (gte IE 9)| IEMobile |!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Ghost Admin</title>
{{content-for "head"}}
2015-02-13 07:22:32 +03:00
2015-02-13 06:22:27 +03:00
<meta name="HandheldFriendly" content="True" />
<meta name="MobileOptimized" content="320" />
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1, minimal-ui, viewport-fit=cover" />
2015-02-13 06:22:27 +03:00
<meta name="pinterest" content="nopin" />
<meta http-equiv="cleartype" content="on" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="Ghost" />
<link rel="shortcut icon" href="assets/img/favicon.ico" />
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon.png" />
2015-02-13 06:22:27 +03:00
<meta name="application-name" content="Ghost" />
<meta name="msapplication-TileColor" content="#15171A" />
🎨 remove usage of ghost's {{asset}} helper in index.html (#574) refs #8140 🎨 remove usage of ghost's {{asset}} helper in built index.html files requires https://github.com/TryGhost/Ghost/pull/8142 - switch to hash-location rather than history-location - remove usage of Ghost's `{{asset}}` helper in index.html - add `content-for` helpers to `asset-delivery` addon that switch asset urls in index.html to `.min` files in production - update the `asset-delivery` addon to copy the production `index.min.html` to `default-prod.hbs` so Ghost can serve production assets when in production mode - change template output path to `core/server/admin/views/` - enable asset fingerprinting - remove `ember-cli-sri` dependency - we weren't using it but now that ember is handling assets it was used automatically and could potentially create issues if users have proxy servers that attempt to compress or otherwise modify asset files ✨ redirect to setup if server says setup isn't finished refs https://github.com/TryGhost/Ghost/issues/8140 - now we're using hash-location the server no longer knows if we're hitting the /setup route so it's not able to redirect for us - extends the default ESA `UnauthenticatedRouteMixin` to add a check against the `/authentication/setup` API endpoint and redirects to `/#/setup/one` if setup isn't complete - this works for all routes because the default behaviour when hitting an authenticated route without the right credentials is to force a logout and redirect to `/#/signin` which utilises the `UnauthenticatedRouteMixin` deps: ember-cli-inject-live-reload@1.6.1
2017-03-14 19:04:46 +03:00
<meta name="msapplication-square70x70logo" content="assets/img/small.png" />
<meta name="msapplication-square150x150logo" content="assets/img/medium.png" />
<meta name="msapplication-square310x310logo" content="assets/img/large.png" />
2015-02-13 06:22:27 +03:00
<!-- 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">
2015-05-19 11:15:16 +03:00
{{content-for "head-footer"}}
2015-02-13 06:22:27 +03:00
</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;">
2022-09-16 14:44:01 +03:00
<source src="assets/videos/logo-loader.mp4" type="video/mp4" />
<div class="gh-loading-spinner"></div>
</video>
</div>
</div>
{{content-for "body"}}
2015-02-13 06:22:27 +03:00
{{content-for "body-footer"}}
2015-02-13 07:22:32 +03:00
<script src="{{rootURL}}assets/vendor.js"></script>
<script src="{{rootURL}}assets/ghost.js"></script>
2015-02-13 06:22:27 +03:00
</body>
</html>