Compare commits

...

2 Commits

5 changed files with 31 additions and 10 deletions

1
.htaccess Normal file
View File

@ -0,0 +1 @@
RedirectMatch 404 install/.*

View File

@ -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

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

BIN
icons/tasks_512.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

19
manifest.json Normal file
View 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/"
}