Additions to implement manifest file for home screen app installation
This commit is contained in:
parent
ae477ab888
commit
d7967d3eb6
|
@ -9,7 +9,10 @@
|
|||
<link rel="apple-touch-icon" sizes="76x76" href="img/comics_76.png">
|
||||
<link rel="apple-touch-icon" sizes="120x120" href="img/comics_120.png">
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="img/comics_152.png">
|
||||
<title>Comics Fancy</title>
|
||||
<link rel="apple-touch-icon" sizes="192x192" href="img/comics_192.png">
|
||||
<link rel="apple-touch-icon" sizes="512x512" href="img/comics_512.png">
|
||||
<link rel="manifest" href="manifest.json" />
|
||||
<title>JAJ Comics</title>
|
||||
<link rel='stylesheet' type='text/css' href='css/reset.css' media='screen' />
|
||||
<link rel='stylesheet' type='text/css' href='css/comics.css' media='screen' />
|
||||
<link rel="stylesheet" type="text/css" href="core/simpleLightbox.min.css" />
|
||||
|
|
BIN
img/comics_192.png
Normal file
BIN
img/comics_192.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 62 KiB |
BIN
img/comics_512.png
Normal file
BIN
img/comics_512.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 229 KiB |
19
manifest.json
Normal file
19
manifest.json
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"short_name": "JAJ Comics",
|
||||
"description": "JAJ Comics: So many comics, so little time!",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/img/comics_512.png",
|
||||
"type": "image/png",
|
||||
"sizes": "512x512"
|
||||
},
|
||||
{
|
||||
"src": "/img/comics_192.png",
|
||||
"type": "image/png",
|
||||
"sizes": "192x192"
|
||||
}
|
||||
],
|
||||
"start_url": "index.php",
|
||||
"display": "fullscreen",
|
||||
"scope": "/"
|
||||
}
|
Loading…
Reference in New Issue
Block a user