-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
122 lines (111 loc) · 3.71 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="canonical" href="https://rchain.coop"></link>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-6B7FD7W88H"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-6B7FD7W88H");
</script>
<script>
/**
* Function that captures a click on an outbound link in Analytics.
* This function takes a valid URL string as an argument, and uses that URL string
* as the event label. Setting the transport method to 'beacon' lets the hit be sent
* using 'navigator.sendBeacon' in browser that support it.
*/
var captureOutboundLink = function(url) {
ga('send', 'event', 'outbound', 'click', url, {
'transport': 'beacon',
'hitCallback': function(){document.location = url;}
});
}
</script>
<script src="/js/jquery-3.3.1.min.js"></script>
<script src="/js/owl.carousel.min.js"></script>
<title>RChain</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
charset="UTF-8"
/>
<meta
name="google-site-verification"
content="NvXu2Qnyi90bS-ubPtaorKKja1_p8SHfQ0zPoqG0sIg"
/>
<link rel="stylesheet" href="/js/owl.carousel.min.css" />
<link rel="stylesheet" href="css/style.css?version=10" />
<link rel="stylesheet" href="css/layout.css?version=5" />
<link rel="shortcut icon" href="assets/favicon-red.png" />
<meta
name="description"
content="RChain is a layer 1 blockchain platform designed from the ground up to support decentralization, on chain data and the scaling needs of Web3."
/>
<meta property="og:title" content="RChain" />
<meta property="og:type" content="website" />
<meta
property="og:description"
content="RChain is a layer 1 blockchain platform designed from the ground up to support decentralization, on chain data and the scaling needs of Web3."
/>
<meta property="og:url" content="https://rchain.coop" />
<meta
property="og:image"
content="https://rchain.coop/assets/og_index.jpg"
/>
<meta property="og:image:height" content="565" />
<meta property="og:image:width" content="1080" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="RChain" />
<meta
name="twitter:image"
content="https://rchain.coop/assets/og_index.jpg"
/>
<meta name="twitter:creator" content="@rchain_coop" />
<meta name="twitter:url" content="https://rchain.coop" />
<meta name="twitter:site" content="https://rchain.coop" />
<meta
name="twitter:description"
content="RChain is a layer 1 blockchain platform designed from the ground up to support decentralization, on chain data and the scaling needs of Web3."
/>
</head>
<style>
.closedPageIndex {
background: #111111;
}
.InfoWrapper {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
display: flex;
flex-direction: column;
}
.ImportantMessage {
margin: 4em;
color: white;
max-width: 42em;
}
p {
font-size: larger;
}
</style>
<body class="closedPageIndex">
<div class="InfoWrapper">
<div class="ImportantMessage">
<h1>The RChain Cooperative is dissolved. </h1>
<a href="/home.html" >Continue to the old website</a>
</div>
</div>
<script src="/js/rchain.coop_Browser.js"></script>
<script src="/js/navAndFooter.js?version=11"></script>
</body>
</html>