index.html 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="description" content="">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <meta name="generator" content="Share With Me!">
  8. <title>Share With Me!</title>
  9. <!-- Place favicon.ico in the `app/` directory -->
  10. <!-- Chrome for Android theme color -->
  11. <meta name="theme-color" content="#2E3AA1">
  12. <!-- Web Application Manifest -->
  13. <link rel="manifest" href="manifest.json">
  14. <!-- Tile color for Win8 -->
  15. <meta name="msapplication-TileColor" content="#3372DF">
  16. <!-- Add to homescreen for Chrome on Android -->
  17. <meta name="mobile-web-app-capable" content="yes">
  18. <meta name="application-name" content="PSK">
  19. <link rel="icon" sizes="192x192" href="images/touch/chrome-touch-icon-192x192.png">
  20. <!-- Add to homescreen for Safari on iOS -->
  21. <meta name="apple-mobile-web-app-capable" content="yes">
  22. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  23. <meta name="apple-mobile-web-app-title" content="Share With Me!">
  24. <link rel="apple-touch-icon" href="images/touch/apple-touch-icon.png">
  25. <!-- Tile icon for Win8 (144x144) -->
  26. <meta name="msapplication-TileImage" content="images/touch/ms-touch-icon-144x144-precomposed.png">
  27. <!-- build:css styles/main.css -->
  28. <link rel="stylesheet" href="styles/main.css">
  29. <!-- endbuild-->
  30. <!-- build:js bower_components/webcomponentsjs/webcomponents-lite.min.js -->
  31. <script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script>
  32. <!-- endbuild -->
  33. <!-- Because this project uses vulcanize this should be your only html import
  34. in this file. All other imports should go in elements.html -->
  35. <link rel="import" href="elements/elements.html">
  36. <!-- For shared styles, shared-styles.html import in elements.html -->
  37. <style is="custom-style" include="shared-styles"></style>
  38. </head>
  39. <body unresolved class="fullbleed layout vertical">
  40. <span id="browser-sync-binding"></span>
  41. <template is="dom-bind" id="app">
  42. <paper-toast id="toast">
  43. <span class="toast-hide-button" role="button" tabindex="0" onclick="app.$.toast.hide()">Ok</span>
  44. </paper-toast>
  45. <!-- Uncomment next block to enable Service Worker support (1/2) -->
  46. <paper-toast id="caching-complete"
  47. duration="6000"
  48. text="Caching complete! This app will work offline.">
  49. </paper-toast>
  50. <platinum-sw-register auto-register
  51. clients-claim
  52. skip-waiting
  53. base-uri="bower_components/platinum-sw/bootstrap"
  54. on-service-worker-installed="displayInstalledToast">
  55. <platinum-sw-cache default-cache-strategy="fastest"
  56. cache-config-file="cache-config.json">
  57. </platinum-sw-cache>
  58. </platinum-sw-register>
  59. </template>
  60. <!-- build:js scripts/app.js -->
  61. <script src="scripts/app.js"></script>
  62. <!-- endbuild-->
  63. </body>
  64. </html>