Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions templates/app/__name__/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
<html>
<head>
<meta charset="utf-8">
<link rel=manifest href=./manifest.json>
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0, minimal-ui">
<meta name="apple-mobile-web-app-title" content="{{name}}">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- For iPad with high-resolution Retina display running iOS ≥ 7: -->
Expand Down
27 changes: 27 additions & 0 deletions templates/app/__name__/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"lang": "en",
"name": "{{name}}",
"short_name": "{{name}}",
"description": "{{description}}",
"start_url": "./?utm_source=homescreen",
"icons": [
{
"src": "./assets/icons/apple-touch-icon-120x120-precomposed.png",
"sizes": "120x120",
"type": "image/png"
},
{
"src": "./assets/icons/apple-touch-icon-152x152-precomposed.png",
"sizes": "152x152",
"type": "image/png"
},
{
"src": "./assets/icons/apple-touch-icon-76x76-precomposed.png",
"sizes": "76x76",
"type": "image/png"
}
],
"theme_color": "#000",
"background_color": "#fff",
"display": "standalone"
}