Add static public resources

This commit is contained in:
Jannis Mattheis 2018-03-15 20:19:44 +01:00 committed by Jannis Mattheis
parent f3a140769c
commit ec0c06a482
2 changed files with 24 additions and 0 deletions

16
ui/public/index.html Normal file
View File

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#3f51b5">
<link rel="manifest" href="%PUBLIC_URL%/manifest.json">
<title>Gotify</title>
</head>
<body>
<noscript>
Gotify requires JavaScript.
</noscript>
<div id="root"></div>
</body>
</html>

8
ui/public/manifest.json Normal file
View File

@ -0,0 +1,8 @@
{
"short_name": "Gotify",
"name": "Gotify WebApp",
"start_url": "./index.html",
"display": "standalone",
"theme_color": "#3f51b5",
"background_color": "#303030"
}