-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (82 loc) · 3.61 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="generator" content="Polymer Starter Kit">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>Swarm City</title>
<meta name="description" content="Swarm City is the first truly decentralized peer to peer sharing economy, enabled by the SWT token, running on the Ethereum blockchain">
<base href="/">
<link rel="icon" href="images/favicon.ico">
<link rel="manifest" href="manifest.json">
<meta name="theme-color" content="#3f51b5">
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="Swarm City">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Swarm City">
<link rel="apple-touch-icon" href="images/manifest/icon-48x48.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/icons/icon-72x72.png">
<link rel="apple-touch-icon" sizes="96x96" href="images/icons/icon-96x96.png">
<link rel="apple-touch-icon" sizes="144x144" href="images/icons/icon-144x144.png">
<link rel="apple-touch-icon" sizes="192x192" href="images/icons/icon-192x192.png">
<meta name="msapplication-TileImage" content="images/icons/icon-144x144.png">
<meta name="msapplication-TileColor" content="#EFD96F">
<meta name="msapplication-tap-highlight" content="no">
<meta name="twitter:card" value="summary">
<meta property="og:title" content="Swarm City">
<meta property="og:type" content="article">
<meta property="og:url" content="https://www.swarm.city/">
<meta property="og:image" content="https://www.swarm.city/images/referrer.jpg">
<meta property="og:description" content="Swarm City is the first truly decentralized peer to peer sharing economy, enabled by the SWT token, running on the Ethereum blockchain."/>
<script src='socket.io.js'></script>
<script>
if (!localStorage.getItem('SwarmCity')) {
let storage = { // eslint-disable-line
user: {
language: 'en',
username: '',
location: '',
avatar: '[[importHref]]../../images/defaultavatar.png'},
keyStore: {},
};
localStorage.setItem('SwarmCity', JSON.stringify(storage));
}
window.Polymer = {rootPath: '/'};
if ('serviceWorker' in navigator) {
window.addEventListener('load', function() {
navigator.serviceWorker.register('service-worker.js', {
scope: Polymer.rootPath,
});
});
}
</script>
<script src="bower_components/webcomponentsjs/webcomponents-loader.js"></script>
<link rel="import" href="src/swarm-city.html">
<style>
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
letter-spacing: 0;
font-style: normal;
background-color: #F4F4F4;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-font-feature-settings: "liga" on;
-moz-font-feature-settings: "liga" on;
-ms-font-feature-settings: "liga" on;
font-feature-settings: "liga" on;
line-height: 1.4;
min-height: 100vh;
}
</style>
</head>
<body>
<swarm-city></swarm-city>
<noscript>
Please enable JavaScript to view this website.
</noscript>
</body>
</html>