-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path404.html
75 lines (57 loc) · 2.96 KB
/
404.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Standard Meta -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<meta name='description' content='All our cBot, indicators and tools are free and open source. We are the community where learning trading becomes easy, fun and automatic.' />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://ctrader.guru/" />
<meta property="og:site_name" content="cTrader Guru" />
<meta property="og:title" content="All our cBot, indicators and tools are free and open source." />
<meta property="og:description" content="We are the community where learning trading becomes easy, fun and automatic." />
<meta property="og:image" content="https://ctrader.guru/assets/images/ctrader.guru.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="All our cBot, indicators and tools are free and open source." />
<meta name="twitter:site" content="cTraderGuru" />
<meta name="twitter:description" content="We are the community where learning trading becomes easy, fun and automatic." />
<meta name="twitter:image" content="https://ctrader.guru/assets/images/ctrader.guru.png" />
<meta name="twitter:creator" content="@ctraderguru" />
<!-- Site Properities -->
<title>cTrader Guru | cBots, indicatos and tools for cTrader</title>
<link rel="shortcut icon" type="image/x-icon" href="assets/images/favicon.ico" />
<!-- Fomantic and Custom CSS-->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/semantic.min.css" />
</head>
<body>
<div class="ui middle aligned center aligned grid" style="height: 100%;">
<div class="column">
<h3 class="ui icon header" style="margin-bottom: 3rem;">
<a href="/"> <img src="/assets/images/cTrader-Guru-Logo.png" alt="cTrader Guru Logo" style="height: 128px;width:128px;"></a>
<div class="content">
cTrader Guru
<div class="sub header">Trading Specialist</div>
</div>
</h3>
<p>😂 I think you're lost...</p>
</div>
</div>
<!-- Fomantic and Custom JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/semantic.min.js"></script>
<script>
$('body')
.toast({
position: 'top center',
displayTime: 5000,
showProgress: 'bottom',
showIcon: 'info',
message: "You will be redirected to the home within 5 seconds",
onHidden: () => {
location.href = "/";
}
});
</script>
</body>
</html>