PairDrop/app/index.html

64 lines
3.2 KiB
HTML
Raw Normal View History

2015-12-18 16:50:36 +01:00
<!doctype html>
<html lang="en">
<head>
2015-12-18 17:43:46 +01:00
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="initial-scale=1,user-scalable=no,maximum-scale=1">
<meta name="generator" content="SnapDrop!">
<title>SnapDrop!</title>
2015-12-18 17:43:46 +01:00
<!-- Place favicon.ico in the `app/` directory -->
<!-- Chrome for Android theme color -->
<meta name="theme-color" content="#3367d6">
2015-12-18 17:43:46 +01:00
<!-- 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">
<!-- 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!">
2015-12-18 17:43:46 +01:00
<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 -->
<script src="bower_components/webcomponentsjs/webcomponents-lite.js" async></script>
2015-12-18 17:43:46 +01:00
<!-- endbuild -->
<!-- Because this project uses vulcanize this should be your only html import
2015-12-18 16:50:36 +01:00
in this file. All other imports should go in elements.html -->
<link rel="import" href="elements/elements.html" async>
<meta name="description" content="SnapDrop lets you instantly share files with people near by. It is a web-based clone of Apple's Airdrop.">
2015-12-18 16:50:36 +01:00
</head>
<body class="fullbleed layout vertical" loading>
<script src="scripts/animated-bg.js" inline></script>
2015-12-18 17:43:46 +01:00
<span id="browser-sync-binding"></span>
<template is="dom-bind" id="app">
<paper-progress indeterminate hidden$="{{!loading}}"></paper-progress>
<buddy-finder me="{{me}}" active$="{{loading}}" buddies="{{buddies}}"></buddy-finder>
<connection-wrapper me="{{me}}" loading="{{loading}}" buddies="{{buddies}}"></connection-wrapper>
2015-12-19 01:18:02 +01:00
<file-receiver></file-receiver>
<paper-toast id="toast" duration="6000">
2015-12-18 17:43:46 +01:00
</paper-toast>
<!-- Uncomment next block to enable Service Worker support (1/2) -->
<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-->
2015-12-18 16:50:36 +01:00
</body>
</html>