PWA Fundvelo der Caritas.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

index.html 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
  6. <title>CaritasPWA</title>
  7. <base href="/" />
  8. <script src="_content/BlazorAnimate/blazorAnimateInterop.js"></script>
  9. <script src="_content/MatBlazor/dist/matBlazor.js"></script>
  10. <link href="_content/MatBlazor/dist/matBlazor.css" rel="stylesheet" />
  11. <link href="css/united/bootstrap.min.css" rel="stylesheet" />
  12. <link href="css/united/_bootswatch.min.css" rel="stylesheet" />
  13. <link href="css/united/_variables.min.css" rel="stylesheet" />
  14. <link href="css/app.css" rel="stylesheet" />
  15. <link href="manifest.json" rel="manifest" />
  16. <link rel="apple-touch-icon" sizes="512x512" href="icon-512.png" />
  17. </head>
  18. <body>
  19. <app>Loading...</app>
  20. <div id="blazor-error-ui">
  21. An unhandled error has occurred.
  22. <a href="" class="reload">Reload</a>
  23. <a class="dismiss">🗙</a>
  24. </div>
  25. <script src="_framework/blazor.webassembly.js"></script>
  26. <script>navigator.serviceWorker.register('service-worker.js');</script>
  27. <script>
  28. function BlazorSetLocalStorage(key, value) {
  29. localStorage.setItem(key, value);
  30. }
  31. function BlazorGetLocalStorage(key) {
  32. return localStorage.getItem(key);
  33. }
  34. function BlazorRegisterStorageEvent(component) {
  35. window.addEventListener("storage", async e => {
  36. await component.invokeMethodAsync("OnStorageUpdated", e.key);
  37. });
  38. }
  39. </script>
  40. </body>
  41. </html>