-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
82 lines (71 loc) · 3.92 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<title>Tick</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="apple-touch-startup-image" href="/static/splash/splash.png">
<meta name="theme-color" content="#333333">
<link rel="apple-touch-icon" sizes="180x180" href="/static/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/static/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/static/favicons/favicon-16x16.png">
<link rel="manifest" href="/static/manifest.json">
<link rel="mask-icon" href="/static/favicons/safari-pinned-tab.svg" color="#333333">
<meta name="apple-mobile-web-app-title" content="Tick">
<meta name="application-name" content="Tick">
<meta name="theme-color" content="#333333">
<!-- Schema.org for Google -->
<meta itemprop="name" content="Tick">
<meta itemprop="description" content="Chat via nearby persons. Instant, Secure, Anonymously. 🕶 ">
<meta name="image" itemprop="image" content="/static/check.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Tick">
<meta name="twitter:description" content="Chat via nearby persons. Instant, Secure, Anonymously. 🕶 ">
<meta name="twitter:site" content="@tickchat">
<meta name="twitter:creator" content="@tickchat">
<meta name="twitter:image" content="http://res.cloudinary.com/cagatayc/image/upload/v1502388094/tick.gif">
<!-- Open Graph general (Facebook, Pinterest & Google+) -->
<meta name="og:title" content="Tick">
<meta name="og:description" content="Chat via nearby persons. Instant, Secure, Anonymously. 🕶 ">
<meta name="og:image" content="/static/check.png">
<meta name="og:url" content="https://tick.chat">
<meta name="og:site_name" content="Tick">
<meta name="og:locale" content="en_US">
<meta name="og:type" content="website">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<script src="/static/lodash.min.js"></script>
<script src="https://cdn.rawgit.com/cagataycali/slogans.tick.chat/master/bundle.js"></script>
<script src="https://cdn.onesignal.com/sdks/OneSignalSDK.js" async></script>
<script>
var OneSignal = window.OneSignal || [];
OneSignal.push(["init", {
appId: "c3b7f24d-fafb-4bd0-a5ab-f02be8d836e8",
autoRegister: true,
notifyButton: {
enable: false /* Set to false to hide */
},
safari_web_id: 'web.onesignal.auto.3437296f-1581-4c9c-99a7-ef947df2b18c'
}]);
</script>
<!--[if IE]><link rel="shortcut icon" href="/static/favicons/favicon-32x32.png"><![endif]-->
<!-- Add to home screen for Android and modern mobile browsers -->
<meta name="msapplication-TileImage" content="/static/favicons/apple-touch-icon-144x144.png">
<meta name="msapplication-TileColor" content="#333333">
<% for (var chunk of webpack.chunks) {
for (var file of chunk.files) {
if (file.match(/\.(js|css)$/)) { %>
<link rel="<%= chunk.initial?'preload':'prefetch' %>" href="<%= htmlWebpackPlugin.files.publicPath + file %>" as="<%= file.match(/\.css$/)?'style':'script' %>"><% }}} %>
</head>
<body>
<noscript>
Tick.Chat doesn't run their code in your browser.
</noscript>
<div id="app"></div>
<!-- Todo: only include in production -->
<%= htmlWebpackPlugin.options.serviceWorkerLoader %>
<!-- built files will be auto injected -->
</body>
</html>