2018-12-18 01:21:29 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset='utf-8' >
|
2019-05-09 14:34:28 +00:00
|
|
|
<meta name="viewport" content="width=device-width, viewport-fit=cover">
|
2018-12-18 01:21:29 +00:00
|
|
|
<meta id='theThemeColor' name='theme-color' content='#4169e1' >
|
|
|
|
<meta name="description" content="An alternative web client for Mastodon, focused on speed and simplicity." >
|
|
|
|
|
|
|
|
%sapper.base%
|
|
|
|
|
|
|
|
<link id='theManifest' rel='manifest' href='/manifest.json' >
|
|
|
|
<link id='theFavicon' rel='icon' type='image/png' href='/favicon.png' >
|
2019-05-14 04:45:38 +00:00
|
|
|
<link rel="apple-touch-icon" href="/apple-icon.png" >
|
2018-12-18 01:21:29 +00:00
|
|
|
<meta name="mobile-web-app-capable" content="yes" >
|
|
|
|
<meta name="apple-mobile-web-app-title" content="Pinafore" >
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="white" >
|
|
|
|
|
|
|
|
<!-- inline CSS -->
|
|
|
|
|
2019-06-01 22:51:46 +00:00
|
|
|
<style id="theGrayscaleStyle" media="only x">
|
|
|
|
/* Firefox doesn't seem to like applying filter: grayscale() to
|
|
|
|
* the entire body, so we apply individually.
|
|
|
|
*/
|
|
|
|
img, svg, video,
|
|
|
|
input[type="checkbox"], input[type="radio"],
|
|
|
|
.inline-emoji, .theme-preview, .emoji-mart-emoji, .emoji-mart-skin {
|
|
|
|
filter: grayscale(100%);
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2020-05-16 20:36:08 +00:00
|
|
|
<style id="theFocusVisibleStyle" media="all">
|
|
|
|
/* :focus-visible styles */
|
|
|
|
/* polyfill */
|
2020-05-16 21:25:12 +00:00
|
|
|
/* Note we have to use [data-focus-visible-added] rather than .focus-visible because
|
|
|
|
* Svelte overrides classes */
|
|
|
|
.js-focus-visible :focus:not([data-focus-visible-added]) {
|
2020-05-16 20:36:08 +00:00
|
|
|
outline: none !important; /* important to win the specificity war */
|
|
|
|
}
|
2020-05-16 21:25:12 +00:00
|
|
|
.js-focus-visible :focus:not([data-focus-visible-added]).focus-after::after {
|
2020-05-16 20:36:08 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* standard version */
|
|
|
|
:focus:not(:focus-visible) {
|
|
|
|
outline: none !important; /* important to win the specificity war */
|
|
|
|
}
|
|
|
|
:focus:not(:focus-visible).focus-after::after {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2018-12-18 01:21:29 +00:00
|
|
|
<noscript>
|
|
|
|
<style>
|
|
|
|
.hidden-from-ssr {
|
|
|
|
opacity: 1 !important;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</noscript>
|
|
|
|
|
|
|
|
<!-- Sapper generates a <style> tag containing critical CSS
|
|
|
|
for the current page. CSS for the rest of the src is
|
|
|
|
lazily loaded when it precaches secondary pages -->
|
|
|
|
%sapper.styles%
|
|
|
|
|
|
|
|
<!-- This contains the contents of the <:Head> component, if
|
|
|
|
the current page has one -->
|
|
|
|
%sapper.head%
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- inline JS -->
|
|
|
|
|
|
|
|
<!-- The application will be rendered inside this element,
|
|
|
|
because `templates/client.js` references it -->
|
|
|
|
<div id='sapper'>%sapper.html%</div>
|
|
|
|
|
|
|
|
<!-- Toast.html gets rendered here -->
|
2018-12-22 23:37:51 +00:00
|
|
|
<div id="theToast"></div>
|
2018-12-18 01:21:29 +00:00
|
|
|
|
2019-05-08 14:52:12 +00:00
|
|
|
<!-- Snackbar.html gets rendered here -->
|
|
|
|
<div id="theSnackbar"></div>
|
|
|
|
|
2018-12-18 01:21:29 +00:00
|
|
|
<!-- LoadingMask.html gets rendered here -->
|
|
|
|
<div id="loading-mask" aria-hidden="true"></div>
|
|
|
|
|
|
|
|
<!-- inline SVG -->
|
|
|
|
|
|
|
|
<!-- Sapper creates a <script> tag containing `templates/client.js`
|
|
|
|
and anything else it needs to hydrate the src and
|
|
|
|
initialise the router -->
|
|
|
|
%sapper.scripts%
|
|
|
|
</body>
|
|
|
|
</html>
|