2021-06-18 07:05:01 -04:00
|
|
|
<!DOCTYPE html>
|
2021-12-11 16:04:12 -05:00
|
|
|
<html lang="en" background="#191919">
|
2021-08-01 15:29:36 -04:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
2021-12-11 16:04:12 -05:00
|
|
|
|
|
|
|
<!--App Title-->
|
2021-08-01 15:29:36 -04:00
|
|
|
<title>Revolt</title>
|
|
|
|
<meta name="apple-mobile-web-app-title" content="Revolt" />
|
2021-07-03 08:20:53 -04:00
|
|
|
|
2021-12-11 16:04:12 -05:00
|
|
|
<!--App Scaling-->
|
2021-08-01 15:29:36 -04:00
|
|
|
<meta
|
|
|
|
name="viewport"
|
|
|
|
content="width=device-width, initial-scale=1.0, user-scalable=no"
|
|
|
|
/>
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
2021-07-03 07:38:48 -04:00
|
|
|
|
2021-08-01 15:29:36 -04:00
|
|
|
<!--App Icons-->
|
|
|
|
<link
|
|
|
|
rel="apple-touch-icon"
|
|
|
|
href="public/assets/icons/apple-touch.png"
|
|
|
|
/>
|
2021-10-23 10:38:52 -04:00
|
|
|
<link rel="icon" type="image/png" href="/assets/logo_round.png" />
|
2021-07-03 08:20:53 -04:00
|
|
|
|
2021-08-01 15:29:36 -04:00
|
|
|
<!--Splash Screens for iOS Devices-->
|
|
|
|
<link
|
|
|
|
href="public/assets/splashscreens/iphone5_splash.png"
|
|
|
|
media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)"
|
|
|
|
rel="apple-touch-startup-image"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
href="public/assets/splashscreens/iphone6_splash.png"
|
|
|
|
media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2)"
|
|
|
|
rel="apple-touch-startup-image"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
href="public/assets/splashscreens/iphoneplus_splash.png"
|
|
|
|
media="(device-width: 621px) and (device-height: 1104px) and (-webkit-device-pixel-ratio: 3)"
|
|
|
|
rel="apple-touch-startup-image"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
href="public/assets/splashscreens/iphonex_splash.png"
|
|
|
|
media="(device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3)"
|
|
|
|
rel="apple-touch-startup-image"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
href="public/assets/splashscreens/iphonexr_splash.png"
|
|
|
|
media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2)"
|
|
|
|
rel="apple-touch-startup-image"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
href="public/assets/splashscreens/iphonexsmax_splash.png"
|
|
|
|
media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3)"
|
|
|
|
rel="apple-touch-startup-image"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
href="public/assets/splashscreens/ipad_splash.png"
|
|
|
|
media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2)"
|
|
|
|
rel="apple-touch-startup-image"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
href="public/assets/splashscreens/ipadpro1_splash.png"
|
|
|
|
media="(device-width: 834px) and (device-height: 1112px) and (-webkit-device-pixel-ratio: 2)"
|
|
|
|
rel="apple-touch-startup-image"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
href="public/assets/splashscreens/ipadpro3_splash.png"
|
|
|
|
media="(device-width: 834px) and (device-height: 1194px) and (-webkit-device-pixel-ratio: 2)"
|
|
|
|
rel="apple-touch-startup-image"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
href="public/assets/splashscreens/ipadpro2_splash.png"
|
|
|
|
media="(device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2)"
|
|
|
|
rel="apple-touch-startup-image"
|
|
|
|
/>
|
|
|
|
</head>
|
2021-11-12 15:20:50 -05:00
|
|
|
<body onContextMenu="return false" ontouchstart="">
|
2021-08-01 15:29:36 -04:00
|
|
|
<div id="app"></div>
|
|
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|