bazarr/frontend/index.html

39 lines
1.2 KiB
HTML
Raw Permalink Normal View History

<!doctype html>
2021-03-25 22:22:43 +08:00
<html lang="en">
<head>
<title>Bazarr</title>
<base href="{{baseUrl}}" />
<meta charset="utf-8" />
2022-09-28 18:27:52 +08:00
<link rel="icon" type="image/x-icon" href="./images/favicon.ico" />
2024-07-05 21:37:01 +08:00
<link
rel="apple-touch-icon"
href="./images/apple-touch-icon-180x180.png"
sizes="180x180"
/>
<link
rel="mask-icon"
href="./images/maskable-icon-512x512.png"
color="#FFFFFF"
/>
<meta name="theme-color" content="#be4bdb" />
2021-03-25 22:22:43 +08:00
<meta
name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1"
/>
<meta
name="description"
content="Bazarr is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you."
/>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script>
2022-05-31 23:49:04 +08:00
try {
window.Bazarr = JSON.parse(`{{BAZARR_SERVER_INJECT | tojson | safe}}`);
} catch (error) {}
2021-03-25 22:22:43 +08:00
</script>
2022-03-29 01:10:24 +08:00
<script type="module" src="./src/dom.tsx"></script>
2021-03-25 22:22:43 +08:00
</body>
</html>