-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
58 lines (48 loc) · 1.81 KB
/
template.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
<html lang="en-US">
<head>
<title>Tutor ${unit}</title>
<link rel="stylesheet" type="text/css" href="https://cdn.ctat.cs.cmu.edu/releases/beta/CTAT.css">
<link rel="stylesheet" type="text/css" href="Assets/slope_intercept-styles.css">
<script src="https://cdn.ctat.cs.cmu.edu/releases/beta/jquery.min.js"></script>
<script src="https://cdn.ctat.cs.cmu.edu/releases/beta/ctat.min.js"></script>
<script src="https://cdn.ctat.cs.cmu.edu/releases/beta/ctatloader.js"></script>
</head>
<body data-width="1440px" data-height="500px">
<main class="CTATTutor">
<h1>Tutor ${unit}</h1>
<section class="CTATProblem">
<h2>Problem Statement</h2>
<a href="${image}" target="_blank">Click here to view sample image.</a>
</section>
<section class="CTATSolution">
<h2>Problem Solution</h2>
<div id="unordered-content">
${content}
</div>
</section>
<section class="CTATTools">
<h2>Tools</h2>
<section class="CTATHints">
<h3>Hints</h3>
<div class="CTATButtons">
<div class="CTATHintButton"></div>
<div class="CTATInstructionsButton">
<button class="unselectable CTAT-instructions-button">
<div class="CTAT-instructions-button--icon">i</div>
<div class="CTAT-instructions-button--text">Instructions</div>
</button>
</div>
</div>
<div class="CTATHintWindow" id="hint"></div>
</section>
<section class="CTATSkills">
<h3>Skills</h3>
<div class="CTATSkillWindow" id="skills"></div>
<div class="CTATButtons">
<div class="CTATDoneButton"></div>
</div>
</section>
</section>
</main>
</body>
</html>