123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta name="description" content="Snapdrop is the easiest way to send files accross devices">
- <meta name="viewport" content="initial-scale=1,user-scalable=no,maximum-scale=1">
- <meta name="generator" content="Snapdrop">
- <title>Snapdrop</title>
- <link rel="shortcut icon" href="favicon.ico?v=2" />
- <!-- Place favicon.ico in the `app/` directory -->
- <!-- Chrome for Android theme color -->
- <meta name="theme-color" content="#3367d6">
- <!-- Web Application Manifest -->
- <link rel="manifest" href="manifest.json">
- <!-- Tile color for Win8 -->
- <meta name="msapplication-TileColor" content="#3372DF">
- <!-- Add to homescreen for Chrome on Android -->
- <meta name="mobile-web-app-capable" content="yes">
- <meta name="application-name" content="PSK">
- <link rel="icon" sizes="192x192" href="images/touch/chrome-touch-icon-192x192.png">
- <link rel="fluid-icon" type="image/png" href="images/touch/chrome-touch-icon-192x192.png">
- <meta property="og:image" content="https://snapdrop.net/images/touch/chrome-touch-icon-192x192.png" />
- <!-- Add to homescreen for Safari on iOS -->
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <meta name="apple-mobile-web-app-title" content="Snapdrop">
- <link rel="apple-touch-icon" href="images/touch/apple-touch-icon.png">
- <!-- Tile icon for Win8 (144x144) -->
- <meta name="msapplication-TileImage" content="images/touch/ms-touch-icon-144x144-precomposed.png">
- <!-- build:css styles/main.css -->
- <link rel="stylesheet" href="styles/main.css">
- <!-- endbuild-->
- <!-- build:js bower_components/webcomponentsjs/webcomponents-lite.min.js async foo="1" -->
- <script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script>
- <!-- endbuild -->
- <!-- Because this project uses vulcanize this should be your only html import
- in this file. All other imports should go in elements.html -->
- <link rel="import" href="elements/elements.html" async>
- <!-- build:js -->
- <script>
- window.debug = true;
- </script>
- <!-- endbuild -->
- </head>
- <body class="fullbleed layout vertical" loading>
- <script src="scripts/animated-bg.js" inline></script>
- <span id="browser-sync-binding"></span>
- <template is="dom-bind" id="app">
- <connection-wrapper me="{{me}}" loading="{{loading}}" buddies="{{buddies}}"></connection-wrapper>
- <neon-animated-pages id="pages" selected="0">
- <x-cards on-switch="_showAbout">
- <div>
- <paper-progress indeterminate hidden$="{{!loading}}"></paper-progress>
- <buddy-finder me="{{me}}" active$="{{loading}}" buddies="{{buddies}}"></buddy-finder>
- </div>
- </x-cards>
- <about-page on-switch="_showApp">
- </about-page>
- </neon-animated-pages>
- <file-receiver></file-receiver>
- <paper-toast id="toast" duration="6000">
- </paper-toast>
- <paper-toast id="caching-complete" duration="6000" text="Caching complete! This app will work offline.">
- </paper-toast>
- <platinum-sw-register auto-register clients-claim skip-waiting base-uri="bower_components/platinum-sw/bootstrap" on-service-worker-installed="displayInstalledToast">
- <platinum-sw-cache default-cache-strategy="fastest" cache-config-file="cache-config.json">
- </platinum-sw-cache>
- </platinum-sw-register>
- </template>
- <!-- build:js scripts/app.js -->
- <script src="scripts/app.js"></script>
- <!-- endbuild-->
- <script>
- (function(i, s, o, g, r, a, m) {
- i['GoogleAnalyticsObject'] = r;
- i[r] = i[r] || function() {
- (i[r].q = i[r].q || []).push(arguments)
- }, i[r].l = 1 * new Date();
- a = s.createElement(o),
- m = s.getElementsByTagName(o)[0];
- a.async = 1;
- a.src = g;
- m.parentNode.insertBefore(a, m)
- })(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
- ga('create', 'UA-71686975-1', 'auto');
- ga('send', 'pageview');
- </script>
- </body>
- </html>
|