Modify app manifest to fix iOS link issue. Fixes #57.

This commit is contained in:
Xitij Ritesh Patel 2018-09-05 19:27:05 -04:00
parent 4b7bb69218
commit 131bec7698
No known key found for this signature in database
GPG Key ID: 6844230380FEB96C
2 changed files with 7 additions and 1 deletions

View File

@ -13,6 +13,9 @@
"type": "image/png"
}
],
"scope": "/",
"lang": "en-US",
"start_url": "/",
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"

View File

@ -14,12 +14,15 @@
<link rel="apple-touch-icon" sizes="180x180" href="{% static "babybuddy/root/apple-touch-icon.png" %}">
<link rel="icon" type="image/png" sizes="32x32" href="{% static "babybuddy/root/favicon-32x32.png" %}">
<link rel="icon" type="image/png" sizes="16x16" href="{% static "babybuddy/root/favicon-16x16.png" %}">
<link rel="manifest" href="{% static "babybuddy/root/site.webmanifest" %}">
<link rel="manifest" href="{% static "babybuddy/root/site.webmanifest.json" %}">
<link rel="mask-icon" href="{% static "babybuddy/root/safari-pinned-tab.svg" %}" color="#226f97">
<meta name="apple-mobile-web-app-title" content="Baby Buddy">
<meta name="application-name" content="Baby Buddy">
<meta name="msapplication-TileColor" content="#226f97">
<meta name="theme-color" content="#ffffff">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="msapplication-starturl" content="/">
</head>
<body style="padding-top: 3rem;">