File tree Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change 5
5
< meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
6
6
< meta name ="viewport " content ="width=device-width, initial-scale=1 ">
7
7
< title > {{ name }}</ title >
8
+ <!-- Add to home screen for Android and modern mobile browsers -->
9
+ < link rel ="manifest " href ="/static/manifest.json ">
10
+ <!-- Add to home screen for Safari on iOS -->
11
+ < meta name ="apple-mobile-web-app-capable " content ="yes ">
12
+ < meta name ="apple-mobile-web-app-status-bar-style " content ="black ">
13
+ < meta name ="apple-mobile-web-app-title " content ="{{ name }} ">
14
+ < link rel ="apple-touch-icon " href ="/static/img/icons/icon-152x152.png ">
15
+ <!-- Add to home screen for Windows -->
16
+ < meta name ="msapplication-TileImage " content ="/static/img/icons/icon-144x144.png ">
17
+ < meta name ="msapplication-TileColor " content ="#000000 ">
8
18
</ head >
9
19
< body >
10
20
< div id ="app "> </ div >
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " My app" ,
3
+ "short_name" : " My app" ,
4
+ "icons" : [{
5
+ "src" : " img/icons/icon-128x128.png" ,
6
+ "sizes" : " 128x128" ,
7
+ "type" : " image/png"
8
+ }, {
9
+ "src" : " img/icons/icon-144x144.png" ,
10
+ "sizes" : " 144x144" ,
11
+ "type" : " image/png"
12
+ }, {
13
+ "src" : " img/icons/icon-152x152.png" ,
14
+ "sizes" : " 152x152" ,
15
+ "type" : " image/png"
16
+ }, {
17
+ "src" : " img/icons/icon-192x192.png" ,
18
+ "sizes" : " 192x192" ,
19
+ "type" : " image/png"
20
+ }, {
21
+ "src" : " img/icons/icon-256x256.png" ,
22
+ "sizes" : " 256x256" ,
23
+ "type" : " image/png"
24
+ }],
25
+ "start_url" : " /index.html" ,
26
+ "display" : " standalone" ,
27
+ "background_color" : " #000000" ,
28
+ "theme_color" : " #000000"
29
+ }
You can’t perform that action at this time.
0 commit comments