Add manifest, icons, and html to make the app installable
This commit is contained in:
parent
6186fa4537
commit
baefedd775
|
|
@ -3,17 +3,18 @@
|
|||
?><!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=0.75" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<link rel="icon" sizes="144x144" href="icons/favicon_144.png">
|
||||
<link rel="apple-touch-icon" sizes="144x144" href="icons/favicon_144.png">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
||||
<link rel="icon" sizes="192x192" href="icons/tasks_192.png" />
|
||||
<link rel="apple-touch-icon" sizes="192x192" href="icons/tasks_192.png" />
|
||||
<link rel="manifest" href="manifest.json" />
|
||||
<link rel='stylesheet' href='core/jquery-ui-1.13.2/jquery-ui.min.css' />
|
||||
<link rel='stylesheet' href='core/toastr.min.css' />
|
||||
<link rel='stylesheet' href='core/apex/apexcharts.css' />
|
||||
<link rel='stylesheet' href='css/main.css' />
|
||||
<title>T&J Task Reminders</title>
|
||||
<link rel='stylesheet' href='core/jquery-ui-1.13.2/jquery-ui.min.css'>
|
||||
<link rel='stylesheet' href='core/toastr.min.css'>
|
||||
<link rel='stylesheet' href='core/apex/apexcharts.css'>
|
||||
<link rel='stylesheet' href='css/main.css'>
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
|||
BIN
icons/tasks_192.png
Executable file
BIN
icons/tasks_192.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 6.1 KiB |
BIN
icons/tasks_512.png
Executable file
BIN
icons/tasks_512.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 35 KiB |
19
manifest.json
Normal file
19
manifest.json
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"short_name": "T&J Task List",
|
||||
"description": "Task list tracker for T & J!",
|
||||
"icons": [
|
||||
{
|
||||
"src": "icons/tasks_512.png",
|
||||
"type": "image/png",
|
||||
"sizes": "512x512"
|
||||
},
|
||||
{
|
||||
"src": "icons/tasks_192.png",
|
||||
"type": "image/png",
|
||||
"sizes": "192x192"
|
||||
}
|
||||
],
|
||||
"start_url": "index.php",
|
||||
"display": "fullscreen",
|
||||
"scope": "/t/"
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user