index.html 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="description" content="">
  6. <meta name="viewport" content="initial-scale=1,user-scalable=no,maximum-scale=1">
  7. <meta name="generator" content="SnapDrop!">
  8. <title>SnapDrop!</title>
  9. <!-- Place favicon.ico in the `app/` directory -->
  10. <!-- Chrome for Android theme color -->
  11. <meta name="theme-color" content="#3367d6">
  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="SnapDrop!">
  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" async></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" async>
  36. <meta name="description" content="SnapDrop lets you instantly share files with people near by. It is a web-based clone of Apple's Airdrop.">
  37. </head>
  38. <body class="fullbleed layout vertical" loading>
  39. <script src="scripts/animated-bg.js" inline></script>
  40. <span id="browser-sync-binding"></span>
  41. <template is="dom-bind" id="app">
  42. <paper-progress indeterminate hidden$="{{!loading}}"></paper-progress>
  43. <buddy-finder me="{{me}}" active$="{{loading}}" buddies="{{buddies}}"></buddy-finder>
  44. <connection-wrapper me="{{me}}" loading="{{loading}}" buddies="{{buddies}}"></connection-wrapper>
  45. <file-receiver></file-receiver>
  46. <paper-toast id="toast" duration="6000">
  47. </paper-toast>
  48. <!-- Uncomment next block to enable Service Worker support (1/2) -->
  49. <paper-toast id="caching-complete" duration="6000" text="Caching complete! This app will work offline.">
  50. </paper-toast>
  51. <platinum-sw-register auto-register clients-claim skip-waiting base-uri="bower_components/platinum-sw/bootstrap" on-service-worker-installed="displayInstalledToast">
  52. <platinum-sw-cache default-cache-strategy="fastest" cache-config-file="cache-config.json">
  53. </platinum-sw-cache>
  54. </platinum-sw-register>
  55. </template>
  56. <!-- build:js scripts/app.js -->
  57. <script src="scripts/app.js"></script>
  58. <!-- endbuild-->
  59. </body>
  60. </html>