-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (88 loc) · 4.36 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="public/favicon.ico">
<title>Hack To The Future</title>
<link rel="canonical" href="https://hack2tfuture.github.io/"/>
<meta property="og:site_name" content="Hack To The Future"/>
<meta property="og:title" content="Hack To The Future"/>
<meta property="og:url" content="https://hack2tfuture.github.io/"/>
<meta property="og:type" content="website"/>
<meta property="og:description" content="A place where teens built cool shit!"/>
<meta property="og:image" content="https://hack2tfuture.github.io/public/og-image.png"/>
<meta property="og:image:width" content="1200"/>
<meta property="og:image:height" content="750"/>
<meta itemprop="name" content="Hack To The Future"/>
<meta itemprop="url" content="https://hack2tfuture.github.io/"/>
<meta itemprop="description" content="A place where teens built cool shit!"/>
<meta itemprop="thumbnailUrl" content="https://hack2tfuture.github.io/public/og-image.png"/>
<link rel="image_src" href="https://hack2tfuture.github.io/public/og-image.png" />
<meta itemprop="image" content="https://hack2tfuture.github.io/public/og-image.png"/>
<meta name="twitter:title" content="Hack To The Future"/>
<meta name="twitter:image" content="https://hack2tfuture.github.io/public/og-image.png"/>
<meta name="twitter:url" content="https://twitter.com/hack2tfuture"/>
<meta name="twitter:card" content="summary"/>
<meta name="twitter:description" content="A place where teens built cool shit!"/>
<meta name="description" content="A place where teens built cool shit!" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:creator" content="@hack2tfuture">
<meta name="twitter:site" content="@hack2tfuture">
<meta name="twitter:title" content="Hack To The Future" />
<meta name="twitter:description" content="A place where teens built cool shit!">
<meta name="twitter:image" content="https://hack2tfuture.github.io/public/og-image.png">
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-TQ954FQ');</script>
<!-- End Google Tag Manager -->
<script src="js/xterm.js"></script>
<script src="js/xterm-addon-fit.js"></script>
<script src="js/xterm-addon-web-links.js"></script>
<script src="js/terminal.js"></script>
<script src="js/terminal-ext.js"></script>
<script src="config/help.js"></script>
<script src="config/social.js"></script>
<script src="config/fs.js"></script>
<script src="config/commands.js"></script>
<link rel="stylesheet" href="css/xterm.css" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<h1 style="display: none">Hack To The Future</h1>
<h2 style="display: none">A place where teens built cool shit!</h2>
<img
id="logo"
src="public/logo.png"
alt="Hack To The Future"
style="display: none"
/>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TQ954FQ"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div id="terminal">
<script>
var term = new Terminal({
cursorBlink: true,
// fontFamily: '"JetBrains Mono", monospace',
fontSize: 16,
});
const fitAddon = new FitAddon.FitAddon();
const webLinksAddon = new WebLinksAddon.WebLinksAddon();
// term.setOption("fontSize", 16);
// term.setOption("fontFamily", '"JetBrains Mono", monospace');
term.open(document.getElementById("terminal"));
term.loadAddon(fitAddon);
term.loadAddon(webLinksAddon);
extend(term);
runCommitTerminal(term);
</script>
</div>
</body>
</html>