forked from thesam73/wordle
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (74 loc) · 3.86 KB
/
index.html
File metadata and controls
75 lines (74 loc) · 3.86 KB
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
<!doctype html>
<html lang="mk">
<head>
<meta charset="utf-8" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#e2e8f0" />
<meta name="theme-color" content="#e2e8f0" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Зборле - МК клон на Wordle" />
<link rel="manifest" href="/manifest.json" />
<title>Зборле - МК клон на Wordle</title>
</head>
<body>
<script type="text/javascript">
;(function (window, document, dataLayerName, id) {
;((window[dataLayerName] = window[dataLayerName] || []),
window[dataLayerName].push({ start: new Date().getTime(), event: 'stg.start' }))
var scripts = document.getElementsByTagName('script')[0],
tags = document.createElement('script')
function stgCreateCookie(a, b, c) {
var d = ''
if (c) {
var e = new Date()
;(e.setTime(e.getTime() + 24 * c * 60 * 60 * 1e3), (d = '; expires=' + e.toUTCString()))
}
document.cookie = a + '=' + b + d + '; path=/'
}
var isStgDebug =
(window.location.href.match('stg_debug') || document.cookie.match('stg_debug')) &&
!window.location.href.match('stg_disable_debug')
stgCreateCookie('stg_debug', isStgDebug ? 1 : '', isStgDebug ? 14 : -1)
var qP = []
;(dataLayerName !== 'dataLayer' && qP.push('data_layer_name=' + dataLayerName),
isStgDebug && qP.push('stg_debug'))
var qPString = qP.length > 0 ? '?' + qP.join('&') : ''
;((tags.async = !0),
(tags.src = 'https://zborle.containers.piwik.pro/' + id + '.js' + qPString),
scripts.parentNode.insertBefore(tags, scripts))
!(function (a, n, i) {
a[n] = a[n] || {}
for (var c = 0; c < i.length; c++)
!(function (i) {
;((a[n][i] = a[n][i] || {}),
(a[n][i].api =
a[n][i].api ||
function () {
var a = [].slice.call(arguments, 0)
'string' == typeof a[0] &&
window[dataLayerName].push({
event: n + '.' + i + ':' + a[0],
parameters: [].slice.call(arguments, 1),
})
}))
})(i[c])
})(window, 'ppms', ['tm', 'cm'])
})(window, document, 'dataLayer', '55e89a0d-d8b0-4b7c-a9fb-0f7486df003f')
</script>
<noscript
><iframe
src="https://zborle.containers.piwik.pro/55e89a0d-d8b0-4b7c-a9fb-0f7486df003f/noscript.html"
height="0"
width="0"
style="display: none; visibility: hidden"
></iframe
></noscript>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>