-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (84 loc) · 3.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width">
<meta charset="utf-8">
<meta property="og:locale" content="en_US">
<meta property="og:type" content="website">
<meta property="og:site_name" content="DT Code Club">
<title>DT Code Club</title>
<meta property="og:title" content="DT Code Club">
<meta name="twitter:title" content="DT Code Club">
<meta name="description" content="David Thompson Secondary's Code Club website.">
<meta property="og:description" content="David Thompson Secondary's Code Club website.">
<meta name="twitter:description" content="David Thompson Secondary's Code Club website.">
<meta property="og:image" content="https://dtcode.club/brand/social-image.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://dtcode.club/brand/social-image.png">
<meta name="theme-color" content="#00ff00">
<meta name="msapplication-TileColor" content="#00ff00">
<link rel="mask-icon" href="./brand/mask-icon.svg" color="#00ff00">
<link rel="apple-touch-icon" sizes="180x180" href="./brand/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./brand/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./brand/favicon-16x16.png">
<link rel="stylesheet" href="./style/style.css">
</head>
<body>
<div class="os-loader-container" style="display: none;">
<div class="os-loader">
<img src="./brand/logo.svg" class="loader-img">
<h1 class="loader-header">Welcome to DTCC OS</h1>
<div class="loader-bar-wrapper">
<div class="loader-bar"></div>
</div>
<span class="loader-text">Hello?</span>
</div>
</div>
<pre id="terminal"></pre>
<div style="display: none;">
<pre id="dtcc-help">
Usage: dtcc [arguments] <!--[options]-->
Activate various information and navigation help functions. Have fun!
Mandatory command arguments
contact, con print out our contact information.
meeting, meet print out a directory of our meeting notes.
biography, bio print out the full “about us” section.
help, -h print this text block.
</pre>
<!--Optional switch arguments
-f, --force run the commmand, no matter what.
-v, --verbose print everything that’s happening, as it’s happening. -->
<pre id="os-help">
Usage: os [arguments] <!--[options]-->
Provides various utilities to load the website and whatnot.
Mandatory command arguments
activate, -a activate the user interface.
help, -h print this text block.
</pre>
<pre id="su-help">
Usage: su [options] [PARAMETERS]
su allows commands to be run with a substitute user and group ID.
Mandatory command arguments
username, -u the username to log in with.
</pre>
<pre id="help">
For more information on a specific command, type [command-name] HELP
OS Provides various functions for interacting with the operating system GUI.
DTCC Provides various functions for finding information about the club.
HELP Prints a list of all commands and what they do.
</pre>
<pre id="transmission">
=============== Welcome To DT Code Club! ===============
Code Club is a school club based around teaching
students the basics of programming and computer science.
We’re glad that you’re here!
Try running [dtcc help] or [os activate].
This site was built by [email protected].
</pre>
<pre id="meeting">
================= Meeting Notes =================
</pre>
</div>
<script src="./script/script.js"></script>
</body>
</html>