-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (61 loc) · 2.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>TTAssist</title>
<link rel="icon" type="image/x-icon" href="images/TTAssistLogo.png"/>
<link rel="stylesheet" href="CSS/Style.css">
<link rel="apple-touch-icon" sizes="57x57" href="images/Icon-57.png">
<link rel="apple-touch-icon" sizes="60x60" href="images/Icon-60.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/Icon-72.png">
<link rel="apple-touch-icon" sizes="76x76" href="images/Icon-76.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/Icon-114.png">
<link rel="apple-touch-icon" sizes="120x120" href="images/Icon-120.png">
<link rel="apple-touch-icon" sizes="144x144" href="images/Icon-144.png">
<link rel="apple-touch-icon" sizes="152x152" href="images/Icon-152.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/Icon-180.png">
<script src="JS/libraries/p5.min.js"></script>
<script src="JS/Script.js"></script>
<script src="JS/subjects.js"></script>
<script src="JS/teachers.js"></script>
<script src="JS/classes.js"></script>
<script src="JS/analysis.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="TTAssist is a timetabling assistive tool." />
</head>
<body id="top" onload="analysisStart()">
<nav class="nav" id="nav">
<ul>
<li>
<a href='timetable.html'>Timetable</a>
</li>
<li>
<a href='subjects.html'>Subjects</a>
</li>
<li>
<a href='teachers.html'>Teachers</a>
</li>
<li>
<a href='classes.html'>Classes</a>
</li>
<li>
<a href='analysis.html'>Analysis</a>
</li>
</ul>
</nav>
<div class="starterPage mainPage">
<h2>Welcome to TTAssist</h2>
<h3>An assistive tool for your timetable.</h3>
<br>
<p>This tool will help to determine if a timetable is even possible, saving you time trying to get an impossible timetable to work.</p>
<br>
<p>It is best if you work along the menu from left to right completing and saving files as you go.</p>
<br>
<p>You can complete the pages at your leisure, and you may wish to delegate the completion/maintenance of some files. For example, you may wish to make the Teachers file update part of onboarding and offboarding staff, and therefore completed by your HR.</p>
<br>
<p>It is recommended that you check your files in the appropriate page before using them for analysis to help ensure that there are no errors in the file that will prevent the analysis from working.</p>
<br>
<p>Fear not, your data stays with you. All data stays in your browser and computer and is never transmitted to our servers.</p>
</div>
</body>
</html>