mirror of https://github.com/DJ2LS/FreeDATA.git
76 lines
2.1 KiB
HTML
76 lines
2.1 KiB
HTML
<!doctype html>
|
|
<html lang="">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="icon" href="<%= BASE_URL %>favicon.ico" />
|
|
<title><%= htmlWebpackPlugin.options.title %></title>
|
|
|
|
<!-- Favicon for browsers -->
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="32x32"
|
|
href="<%= BASE_URL %>favicon-32x32.png"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="16x16"
|
|
href="<%= BASE_URL %>favicon-16x16.png"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="192x192"
|
|
href="<%= BASE_URL %>android-chrome-192x192.png"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="512x512"
|
|
href="<%= BASE_URL %>android-chrome-512x512.png"
|
|
/>
|
|
|
|
<!-- Apple touch icon -->
|
|
<link rel="apple-touch-icon" href="<%= BASE_URL %>apple-touch-icon.png" />
|
|
|
|
<!-- Android icons -->
|
|
<link rel="manifest" href="<%= BASE_URL %>manifest.json" />
|
|
|
|
<!-- Prevent status bar from showing on iOS -->
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta
|
|
name="apple-mobile-web-app-status-bar-style"
|
|
content="black-translucent"
|
|
/>
|
|
|
|
<!-- Add custom JavaScript to set the viewport height -->
|
|
<script>
|
|
function setAppHeight() {
|
|
const appHeight = window.visualViewport?.height || window.innerHeight;
|
|
document.documentElement.style.setProperty(
|
|
"--app-height",
|
|
`${appHeight}px`,
|
|
);
|
|
}
|
|
window.addEventListener("resize", setAppHeight);
|
|
window.addEventListener("orientationchange", setAppHeight);
|
|
document.addEventListener("DOMContentLoaded", setAppHeight);
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<noscript>
|
|
<strong
|
|
>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work
|
|
properly without JavaScript enabled. Please enable it to
|
|
continue.</strong
|
|
>
|
|
</noscript>
|
|
<div id="app"></div>
|
|
<!-- built files will be auto injected -->
|
|
</body>
|
|
</html>
|