2022-12-10 09:14:48 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
2022-12-19 16:32:45 +00:00
|
|
|
<meta
|
|
|
|
name="viewport"
|
|
|
|
content="width=device-width, initial-scale=1, viewport-fit=cover"
|
|
|
|
/>
|
2022-12-27 12:47:23 +00:00
|
|
|
<title><{ VITE_CLIENT_NAME }></title>
|
2022-12-19 06:51:56 +00:00
|
|
|
<meta
|
|
|
|
name="description"
|
|
|
|
content="Minimalistic opinionated Mastodon web client"
|
|
|
|
/>
|
2022-12-10 09:14:48 +00:00
|
|
|
<meta name="color-scheme" content="dark light" />
|
2023-01-17 12:35:54 +00:00
|
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
2022-12-17 15:14:34 +00:00
|
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
2022-12-27 12:47:23 +00:00
|
|
|
<meta name="apple-mobile-web-app-title" content="<{ VITE_CLIENT_NAME }>" />
|
2022-12-17 15:14:34 +00:00
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
2022-12-27 12:47:23 +00:00
|
|
|
<link rel="canonical" href="<{ VITE_WEBSITE }>" />
|
2022-12-19 06:51:56 +00:00
|
|
|
<meta
|
|
|
|
name="theme-color"
|
|
|
|
content="#fff"
|
|
|
|
media="(prefers-color-scheme: light)"
|
|
|
|
/>
|
|
|
|
<meta
|
|
|
|
name="theme-color"
|
|
|
|
content="#242526"
|
|
|
|
media="(prefers-color-scheme: dark)"
|
|
|
|
/>
|
2023-01-11 11:26:24 +00:00
|
|
|
<meta name="google" content="notranslate" />
|
2023-01-17 12:35:54 +00:00
|
|
|
<link rel="me" href="https://hachyderm.io/@phanpy" />
|
|
|
|
|
|
|
|
<!-- Metacrap https://broken-links.com/2015/12/01/little-less-metacrap/ -->
|
|
|
|
<meta property="twitter:card" content="summary_large_image" />
|
|
|
|
<meta property="og:url" content="<{ VITE_WEBSITE }>" />
|
|
|
|
<meta property="og:title" content="<{ VITE_CLIENT_NAME }>" />
|
|
|
|
<meta
|
|
|
|
property="og:description"
|
|
|
|
content="Minimalistic opinionated Mastodon web client"
|
|
|
|
/>
|
|
|
|
<meta property="og:image" content="<{ VITE_WEBSITE }>/og-image.png" />
|
2022-12-10 09:14:48 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="app"></div>
|
|
|
|
<div id="modal-container"></div>
|
|
|
|
<script type="module" src="/src/main.jsx"></script>
|
2022-12-24 08:51:19 +00:00
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
style="position: absolute; width: 0; height: 0"
|
|
|
|
>
|
|
|
|
<filter id="spoiler" x="-20%" y="-20%" width="140%" height="140%">
|
|
|
|
<feColorMatrix
|
|
|
|
type="matrix"
|
|
|
|
values="0.01 0 0 0 0
|
|
|
|
0.01 0 0 0 0
|
|
|
|
0.01 0 0 0 0
|
|
|
|
0 0 0 .5 0"
|
|
|
|
in="SourceGraphic"
|
|
|
|
result="colormatrix"
|
|
|
|
/>
|
|
|
|
<feTurbulence
|
|
|
|
type="turbulence"
|
|
|
|
baseFrequency=".5 .5"
|
|
|
|
numOctaves="10"
|
|
|
|
seed="1"
|
|
|
|
result="turbulence"
|
|
|
|
/>
|
|
|
|
<feDisplacementMap
|
|
|
|
in="colormatrix"
|
|
|
|
in2="turbulence"
|
|
|
|
scale="20"
|
|
|
|
xChannelSelector="R"
|
|
|
|
yChannelSelector="B"
|
|
|
|
result="displacementMap"
|
|
|
|
/>
|
|
|
|
</filter>
|
2022-12-24 14:52:19 +00:00
|
|
|
<filter id="spoiler-dark" x="-20%" y="-20%" width="140%" height="140%">
|
|
|
|
<feColorMatrix
|
|
|
|
type="matrix"
|
|
|
|
values="1 0 0 .8 0
|
|
|
|
1 0 0 .8 0
|
|
|
|
1 0 0 .8 0
|
|
|
|
0 0 0 .5 0"
|
|
|
|
in="SourceGraphic"
|
|
|
|
result="colormatrix"
|
|
|
|
/>
|
|
|
|
<feTurbulence
|
|
|
|
type="turbulence"
|
|
|
|
baseFrequency=".5 .5"
|
|
|
|
numOctaves="10"
|
|
|
|
seed="1"
|
|
|
|
result="turbulence"
|
|
|
|
/>
|
|
|
|
<feDisplacementMap
|
|
|
|
in="colormatrix"
|
|
|
|
in2="turbulence"
|
|
|
|
scale="20"
|
|
|
|
xChannelSelector="R"
|
|
|
|
yChannelSelector="B"
|
|
|
|
result="displacementMap"
|
|
|
|
/>
|
|
|
|
</filter>
|
2022-12-24 08:51:19 +00:00
|
|
|
</svg>
|
2022-12-10 09:14:48 +00:00
|
|
|
</body>
|
|
|
|
</html>
|