index.html (1074B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <meta content="IE=Edge" http-equiv="X-UA-Compatible"> 6 <meta name="description" content="Bahnhofsfoto-App for Android and iOS using Flutter"> 7 8 <!-- iOS meta tags & icons --> 9 <meta name="apple-mobile-web-app-capable" content="yes"> 10 <meta name="apple-mobile-web-status-bar-style" content="black"> 11 <meta name="apple-mobile-web-app-title" content="rs_flutter_app"> 12 <link rel="apple-touch-icon" href="/icons/Icon-192.png"> 13 14 <title>Bahnhofsfotos</title> 15 <link rel="manifest" href="/manifest.json"> 16 </head> 17 <body> 18 <!-- This script installs service_worker.js to provide PWA functionality to 19 application. For more information, see: 20 https://developers.google.com/web/fundamentals/primers/service-workers --> 21 <script> 22 if ('serviceWorker' in navigator) { 23 window.addEventListener('load', function () { 24 navigator.serviceWorker.register('/flutter_service_worker.js'); 25 }); 26 } 27 </script> 28 <script src="main.dart.js" type="application/javascript"></script> 29 </body> 30 </html>