index.html 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <!doctype html>
  2. <html lang="en">
  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. <meta name="generator" content="Snapdrop">
  7. <title>Snapdrop</title>
  8. <link rel="shortcut icon" href="favicon.ico?v=3" />
  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. <link rel="fluid-icon" type="image/png" href="images/touch/chrome-touch-icon-192x192.png">
  21. <meta name="description" content="Snapdrop is an easy way to transfer files. Instantly share images, video, PDF, and links across devices. Peer2Peer, Private, Secure and Open Source. No Setup, No Signup.">
  22. <meta property="og:image" content="https://snapdrop.net/images/touch/chrome-splashscreen-icon-384x384.png" />
  23. <meta property="og:url" content="https://snapdrop.net/" />
  24. <meta name="twitter:image" content="https://snapdrop.net/images/touch/chrome-splashscreen-icon-384x384.png" />
  25. <meta name="twitter:author" content="@RobinLinus" />
  26. <meta property="og:type" content="article" />
  27. <meta property="og:author" content="https://facebook.com/RobinLinus" />
  28. <meta property="fb:pages" content="451189218422617" />
  29. <meta property="fb:profile_id" content="451189218422617" />
  30. <meta name="twitter:description" content="Snapdrop is an easy way to transfer files. Instantly share images, video, PDF, and links across devices. Peer2Peer, Private, Secure and Open Source. No Setup, No Signup.">
  31. <!-- Add to homescreen for Safari on iOS -->
  32. <meta name="apple-mobile-web-app-capable" content="yes">
  33. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  34. <meta name="apple-mobile-web-app-title" content="Snapdrop">
  35. <link rel="apple-touch-icon" href="images/touch/apple-touch-icon.png">
  36. <!-- Tile icon for Win8 (144x144) -->
  37. <meta name="msapplication-TileImage" content="images/touch/ms-touch-icon-144x144-precomposed.png">
  38. <!-- build:css styles/main.css -->
  39. <link rel="stylesheet" href="styles/main.css">
  40. <!-- endbuild-->
  41. <!-- build:js bower_components/webcomponentsjs/webcomponents-lite.min.js async foo="1" -->
  42. <script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script>
  43. <!-- endbuild -->
  44. <!-- Because this project uses vulcanize this should be your only html import
  45. in this file. All other imports should go in elements.html -->
  46. <link rel="import" href="elements/elements.html" async>
  47. <script>
  48. window.debug = true;
  49. </script>
  50. </head>
  51. <body class="layout vertical">
  52. <script src="scripts/animated-bg.js" inline></script>
  53. <span id="browser-sync-binding"></span>
  54. <template is="dom-bind" id="app">
  55. <connection-wrapper me="{{me}}" loading="{{loading}}" buddies="{{buddies}}"></connection-wrapper>
  56. <neon-animated-pages id="pages" selected="0">
  57. <x-cards on-switch="_showAbout">
  58. <div>
  59. <paper-progress indeterminate hidden$="{{!loading}}"></paper-progress>
  60. <buddy-finder me="{{me}}" active$="{{loading}}" buddies="{{buddies}}"></buddy-finder>
  61. </div>
  62. </x-cards>
  63. <about-page on-switch="_showApp">
  64. </about-page>
  65. </neon-animated-pages>
  66. <file-receiver></file-receiver>
  67. <paper-toast id="toast" duration="6000">
  68. </paper-toast>
  69. <paper-toast id="caching-complete" duration="6000" text="Caching complete! This app will work offline.">
  70. </paper-toast>
  71. <donate-dialog></donate-dialog>
  72. <platinum-sw-register auto-register clients-claim skip-waiting base-uri="bower_components/platinum-sw/bootstrap" on-service-worker-installed="displayInstalledToast">
  73. <platinum-sw-cache default-cache-strategy="fastest" cache-config-file="cache-config.json">
  74. </platinum-sw-cache>
  75. </platinum-sw-register>
  76. </template>
  77. <!-- build:js scripts/app.js -->
  78. <script src="scripts/app.js"></script>
  79. <!-- endbuild-->
  80. <script>
  81. (function(i, s, o, g, r, a, m) {
  82. i['GoogleAnalyticsObject'] = r;
  83. i[r] = i[r] || function() {
  84. (i[r].q = i[r].q || []).push(arguments)
  85. }, i[r].l = 1 * new Date();
  86. a = s.createElement(o),
  87. m = s.getElementsByTagName(o)[0];
  88. a.async = 1;
  89. a.src = g;
  90. m.parentNode.insertBefore(a, m)
  91. })(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
  92. ga('create', 'UA-71686975-1', 'auto');
  93. ga('send', 'pageview');
  94. </script>
  95. </body>
  96. </html>