Browse Source

Added webmanifest and more icons

pull/1/head
Ravi Shah 5 years ago
parent
commit
18a5932c6a
  1. 22
      site.webmanifest
  2. BIN
      static/android-chrome-192x192.png
  3. BIN
      static/android-chrome-512x512.png
  4. BIN
      static/apple-touch-icon.png
  5. BIN
      static/favicon-16x16.png
  6. BIN
      static/favicon-32x32.png
  7. BIN
      static/favicon.ico
  8. 4
      templates/index.html
  9. 4
      templates/login.html

22
site.webmanifest

@ -0,0 +1,22 @@
{
"short_name": "Garage Door",
"name": "Control your garage door opener",
"description": "Weather forecast information",
"icons": [
{
"src": "/images/icons-192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "/images/icons-512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": "/",
"background_color": "#3367D6",
"display": "standalone",
"scope": "/",
"theme_color": "#3367D6",
}

BIN
static/android-chrome-192x192.png

Binary file not shown.

After

Width: 192  |  Height: 192  |  Size: 19 KiB

BIN
static/android-chrome-512x512.png

Binary file not shown.

After

Width: 512  |  Height: 512  |  Size: 79 KiB

BIN
static/apple-touch-icon.png

Binary file not shown.

After

Width: 180  |  Height: 180  |  Size: 17 KiB

BIN
static/favicon-16x16.png

Binary file not shown.

After

Width: 16  |  Height: 16  |  Size: 612 B

BIN
static/favicon-32x32.png

Binary file not shown.

After

Width: 32  |  Height: 32  |  Size: 1.5 KiB

BIN
static/favicon.ico

Binary file not shown.

4
templates/index.html

@ -4,6 +4,10 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="static/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="static/styles.css" rel="stylesheet" media="screen">
<link rel="manifest" href="/site.webmanifest">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
</head>
<body>
<div class="header">

4
templates/login.html

@ -3,6 +3,10 @@
<title>Log in to continue</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="static/bootstrap.min.css" rel="stylesheet" media="screen">
<link rel="manifest" href="/site.webmanifest">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
</head>
<body>
<div class="container">

Loading…
Cancel
Save