Added the splash screen for iOS and Meta tags to Android and Win8
This commit is contained in:
@@ -1,27 +1,48 @@
|
||||
<!-- Path to manifest.json -->
|
||||
<link rel="manifest" href="/manifest.json">
|
||||
|
||||
<!-- Icons for Apple Devices -->
|
||||
{% for icon in PWA_APP_ICONS %}
|
||||
<link rel="apple-touch-icon" href="{{ icon.src }}" sizes="{{ icon.sizes }}">
|
||||
{% endfor %}
|
||||
<!-- Add to homescreen for Chrome on Android -->
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
<meta name="application-name" content="{{ PWA_APP_NAME }}">
|
||||
|
||||
|
||||
<!-- Chrome for Android theme color -->
|
||||
<meta name="theme-color" content="{{ PWA_APP_THEME_COLOR }}">
|
||||
|
||||
<!-- Add to homescreen for Safari on iOS -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-title" content="{{ PWA_APP_NAME }}">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="default">
|
||||
{% for icon in PWA_APP_ICONS %}
|
||||
<link rel="apple-touch-icon" href="{{ icon.src }}" sizes="{{ icon.size }}">
|
||||
{% endfor %}
|
||||
|
||||
|
||||
{% for splash in PWA_APP_SPLASH_SCREEN%}
|
||||
<link href="{{ splash.src }}" media="{{ splash.media }}" rel="apple-touch-startup-image"/>
|
||||
{% endfor %}
|
||||
|
||||
|
||||
<!-- Tile for Win8 -->
|
||||
<meta name="msapplication-TileColor" content="{{ PWA_APP_BACKGROUND_COLOR }}">
|
||||
{% with PWA_APP_ICONS|last as icon %}
|
||||
<meta name="msapplication-TileImage" content="{{ icon.src }}">
|
||||
|
||||
|
||||
<link rel="icon" sizes="{{ icon.size }}" href="{{ icon.src }}">
|
||||
{% endwith %}
|
||||
|
||||
<script type="text/javascript">
|
||||
// Initialize the service worker
|
||||
if ('serviceWorker' in navigator) {
|
||||
navigator.serviceWorker.register('/serviceworker.js', {
|
||||
scope: '.' // <--- THIS BIT IS REQUIRED
|
||||
scope: '.'
|
||||
}).then(function (registration) {
|
||||
// Registration was successful
|
||||
console.log('django-progressive-web-app: ServiceWorker registration successful with scope: ', registration.scope);
|
||||
console.log('django-pwa: ServiceWorker registration successful with scope: ', registration.scope);
|
||||
}, function (err) {
|
||||
// registration failed :(
|
||||
console.log('django-progressive-web-app: ServiceWorker registration failed: ', err);
|
||||
console.log('django-pwa: ServiceWorker registration failed: ', err);
|
||||
});
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -12,6 +12,16 @@ var filesToCache = [
|
||||
'/static/images/icons/icon-192x192.png',
|
||||
'/static/images/icons/icon-384x384.png',
|
||||
'/static/images/icons/icon-512x512.png',
|
||||
'/static/images/icons/splash-640x1136.png',
|
||||
'/static/images/icons/splash-750x1334.png',
|
||||
'/static/images/icons/splash-1242x2208.png',
|
||||
'/static/images/icons/splash-1125x2436.png',
|
||||
'/static/images/icons/splash-828x1792.png',
|
||||
'/static/images/icons/splash-1242x2688.png',
|
||||
'/static/images/icons/splash-1536x2048.png',
|
||||
'/static/images/icons/splash-1668x2224.png',
|
||||
'/static/images/icons/splash-1668x2388.png',
|
||||
'/static/images/icons/splash-2048x2732.png'
|
||||
];
|
||||
|
||||
// Cache on install
|
||||
|
||||
Reference in New Issue
Block a user