-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
64 lines (58 loc) · 2.81 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
<html>
<head>
<title>Orb Church - Beta</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, viewport-fit=cover">
<meta http-equiv="ScreenOrientation" content="autoRotate:disabled">
<link rel="icon" href="/favicon.ico" sizes="any"><!-- 32×32 -->
<link rel="icon" href="/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png"><!-- 180×180 -->
<link rel="manifest" href="/manifest.webmanifest">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Gothic+A1:wght@600&family=Source+Serif+Pro&display=swap" rel="stylesheet">
<script src="scripts/vendor/domready.js"></script>
<link rel="stylesheet" href="styles/main.css?v=4" type="text/css">
</head>
<!-- <div class="debug"> -->
<!-- <dl> -->
<!-- ko foreach: requestCounter -->
<!-- <dt data-bind="text: name"></dt> -->
<!-- <dd data-bind="text: requests"></dd> -->
<!-- /ko -->
<!-- <dt>total:</dt><dd data-bind="text: requestsThisSession"></dd> -->
<!-- </dl> -->
<!-- <dl> -->
<!-- <dt>Input Mode:</dt> -->
<!-- <dd data-bind="text: inputMode"></dd> -->
<!-- <dt>Pointer mode:</dt> -->
<!-- <dd data-bind="text: pointerMode"></dd> -->
<!-- </dl> -->
<!-- </div> -->
<body data-bind="event: {keydown: keyDown}, keydownBubble: false, inputMode: inputMode" tabindex="0" ontouchstart="">
<div class="pls-rotate">Please rotate your device to portrait orientation :)</div>
<main data-bind="class: latestCompletePage()">
<div class="orb" data-bind="class: orbClass">
<img src="styles/png/orb-logo-blue-dot-church.png">
</div>
<!-- ko foreach: pages -->
<section data-bind="page: $data"></section>
<!-- /ko -->
<i class="loader" data-bind="visible: loadingModal"></i>
<!-- ko if: modalActive -->
<!-- ko component: {name: 'modal', params: modalParams} -->
<!-- /ko -->
<!-- /ko -->
<a class="privacy-policy" data-bind="click: (data, event) => launchModal('privacyPolicy')">Privacy Policy</a>
</main>
<script async data-main="scripts/rConfig" src="scripts/vendor/require.js"></script>
<!-- Statcounter -->
<script type="text/javascript">
var sc_project=12576814;
var sc_invisible=1;
var sc_security="0f2b7d5e";
</script>
<script type="text/javascript" src="https://www.statcounter.com/counter/counter.js" async></script>
<!-- End of Statcounter -->
</body>
</html>