diff options
author | Liang Yi <[email protected]> | 2021-03-25 22:22:43 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2021-03-25 10:22:43 -0400 |
commit | f64719e4ad27df82d93f4eb2ea67c6fc81cf9d16 (patch) | |
tree | d518edda5b2bed6f8408de8e558b4ffb9a843bcb /frontend/public | |
parent | fc9f7772b3b6364b9f92fc9bada9d7cabb8047e1 (diff) | |
download | bazarr-f64719e4ad27df82d93f4eb2ea67c6fc81cf9d16.tar.gz bazarr-f64719e4ad27df82d93f4eb2ea67c6fc81cf9d16.zip |
Refactored Web UI using React
Diffstat (limited to 'frontend/public')
-rw-r--r-- | frontend/public/index.html | 29 | ||||
-rw-r--r-- | frontend/public/static/favicon.ico | bin | 0 -> 15086 bytes | |||
-rw-r--r-- | frontend/public/static/manifest.json | 14 |
3 files changed, 43 insertions, 0 deletions
diff --git a/frontend/public/index.html b/frontend/public/index.html new file mode 100644 index 000000000..14d20c9f3 --- /dev/null +++ b/frontend/public/index.html @@ -0,0 +1,29 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <title>Bazarr</title> + <base href="{{baseUrl}}" /> + <meta charset="utf-8" /> + <link + rel="icon" + type="image/x-icon" + href="%PUBLIC_URL%/static/favicon.ico" + /> + <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." + /> + <link rel="manifest" href="%PUBLIC_URL%/static/manifest.json" /> + </head> + <body> + <noscript>You need to enable JavaScript to run this app.</noscript> + <div id="root"></div> + <script> + window.Bazarr = {{BAZARR_SERVER_INJECT | tojson | safe}}; + </script> + </body> +</html> diff --git a/frontend/public/static/favicon.ico b/frontend/public/static/favicon.ico Binary files differnew file mode 100644 index 000000000..02c0a6412 --- /dev/null +++ b/frontend/public/static/favicon.ico diff --git a/frontend/public/static/manifest.json b/frontend/public/static/manifest.json new file mode 100644 index 000000000..690e53967 --- /dev/null +++ b/frontend/public/static/manifest.json @@ -0,0 +1,14 @@ +{ + "short_name": "Bazarr", + "name": "Bazarr Frontend", + "icons": [ + { + "src": "favicon.ico", + "sizes": "64x64 32x32 24x24 16x16", + "type": "image/x-icon" + } + ], + "start_url": ".", + "display": "standalone", + "background_color": "#ffffff" +} |