summaryrefslogtreecommitdiffhomepage
path: root/frontend/index.html
blob: 46f5375a87ae54c1c2cd9bd597ab1f34c899ce2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!doctype html>
<html lang="en">
  <head>
    <title>Bazarr</title>
    <base href="{{baseUrl}}" />
    <meta charset="utf-8" />
    <link rel="icon" type="image/x-icon" href="./images/favicon.ico" />
    <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" />
    <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>
      try {
        window.Bazarr = JSON.parse(`{{BAZARR_SERVER_INJECT | tojson | safe}}`);
      } catch (error) {}
    </script>
    <script type="module" src="./src/dom.tsx"></script>
  </body>
</html>