Skip to content

Commit 4c3d04c

Browse files
抽风人民公社抽风人民公社
authored andcommitted
Deleted Unrelated & Add Content for Drop Down Pages
1 parent 3b830f2 commit 4c3d04c

25 files changed

Lines changed: 268 additions & 44 deletions

index.html

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
<div class="header-left">
1515
<button id="menu-toggle" class="menu-toggle"></button>
1616

17-
<a href="/" class="brand" aria-label="OLI Torus Tutorial Hub (home)">
17+
<a href="/" class="brand" aria-label="OLI Torus Launchpad (home)">
1818
<img src="assets/images/logo.png" alt="" class="brand-logo" aria-hidden="true" />
1919
<span class="brand-oli">OLI</span>
2020
<span class="brand-torus">Torus</span>
2121
<span class="brand-sub">Tutorial Hub</span>
2222
</a>
2323

24-
<a href="https://proton.oli.cmu.edu/" class="open-torus" target="_blank">LAUNCH TORUS</a>
24+
<a href="https://proton.oli.cmu.edu/" class="open-torus" target="_blank">OPEN TORUS</a>
2525
</div>
2626
<div class="header-right">
2727
<a href="#" class="search-tutorial-btn" aria-label="Search Tutorial">
@@ -70,6 +70,7 @@
7070
</div>
7171

7272
<!-- COURSE AUTHOR SECTIONS -->
73+
<!-- set up your course -->
7374
<div class="role-header">Author</div>
7475
<div class="menu-section">
7576
<div class="section-title" onclick="toggleSection(this)">
@@ -115,7 +116,7 @@
115116
</li>
116117
</ul>
117118
</div>
118-
119+
<!-- develop your course -->
119120
<div class="menu-section">
120121
<div class="section-title" onclick="toggleSection(this)">
121122
<span class="title-text">Develop Your Course</span>
@@ -155,7 +156,7 @@
155156
</li>
156157
</ul>
157158
</div>
158-
159+
<!-- Publish your course -->
159160
<div class="menu-section">
160161
<div class="section-title" onclick="toggleSection(this)">
161162
<span class="title-text">Publish Your Course</span>
@@ -171,7 +172,8 @@
171172
<li data-page="pages/publish-your-course/review-your-course.html"><span>Review Your Course</span></li>
172173
</ul>
173174

174-
<!-- INSTRUCTOR SECTIONS -->
175+
<!-- INSTRUCTOR SECTIONS -->
176+
<!-- Link course to LMS -->
175177
<div class="role-header">Instructor</div>
176178
<div class="menu-section">
177179
<div class="section-title" onclick="toggleSection(this)">
@@ -190,7 +192,7 @@
190192
</li>
191193
</ul>
192194
</div>
193-
195+
<!--Scheduling and assessment -->
194196
<div class="menu-section">
195197
<div class="section-title" onclick="toggleSection(this)">
196198
<span class="title-text">Scheduling and Assessment</span>

pages/develop-your-course/activity-bank.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Create a New Project</title>
7-
6+
87
<!-- Existing site styles (includes .video-container, .title-bar, .page-content) -->
98
<link rel="stylesheet" href="./style.css" />
109

pages/develop-your-course/add-los-in-page.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Create a New Project</title>
7-
6+
87
<!-- Existing site styles (includes .video-container, .title-bar, .page-content) -->
98
<link rel="stylesheet" href="./style.css" />
109

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
7+
<!-- Existing site styles (includes .video-container, .title-bar, .page-content) -->
8+
<link rel="stylesheet" href="./style.css" />
9+
10+
<!-- Optional: silence favicon 404 in dev -->
11+
<link rel="icon" href="data:,">
12+
</head>
13+
<body>
14+
15+
<div class="video-container">
16+
<video
17+
controls
18+
preload="metadata"
19+
playsinline
20+
style="width:100%;height:auto;display:block;background:#000;border-radius:12px;border:1px solid var(--border);box-shadow:var(--shadow);"
21+
>
22+
<!-- UPDATE THIS: video file -->
23+
<source src="./assets/videos/develop-your-course/add-mcq.mp4" type="video/mp4" />
24+
25+
<!-- UPDATE THIS: captions file -->
26+
<track
27+
src="./assets/captions/develop-your-course/add-mcq.vtt"
28+
kind="subtitles"
29+
srclang="en"
30+
label="English"
31+
default
32+
/>
33+
34+
Your browser does not support the video tag.
35+
</video>
36+
37+
<!-- UPDATE THIS: video title -->
38+
<div class="title-bar">
39+
Add Multiple-Choice Questions (MCQ)
40+
</div>
41+
42+
<div class="page-content">
43+
<p>Text</p>
44+
</div>
45+
</div>
46+
47+
</body>
48+
</html>

pages/develop-your-course/add-paragraph.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Create a New Project</title>
7-
6+
87
<!-- Existing site styles (includes .video-container, .title-bar, .page-content) -->
98
<link rel="stylesheet" href="./style.css" />
109

@@ -47,3 +46,4 @@
4746

4847
</body>
4948
</html>
49+

pages/develop-your-course/create-a-page.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Create a New Project</title>
7-
6+
87
<!-- Existing site styles (includes .video-container, .title-bar, .page-content) -->
98
<link rel="stylesheet" href="./style.css" />
109

pages/develop-your-course/create-containers.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Create a New Project</title>
7-
6+
87
<!-- Existing site styles (includes .video-container, .title-bar, .page-content) -->
98
<link rel="stylesheet" href="./style.css" />
109

pages/develop-your-course/create-sub-objectives.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Create a New Project</title>
7-
6+
87
<!-- Existing site styles (includes .video-container, .title-bar, .page-content) -->
98
<link rel="stylesheet" href="./style.css" />
109

pages/develop-your-course/edit-page-title.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Create a New Project</title>
7-
6+
87
<!-- Existing site styles (includes .video-container, .title-bar, .page-content) -->
98
<link rel="stylesheet" href="./style.css" />
109

pages/develop-your-course/edit-save-page.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Create a New Project</title>
7-
6+
87
<!-- Existing site styles (includes .video-container, .title-bar, .page-content) -->
98
<link rel="stylesheet" href="./style.css" />
109

0 commit comments

Comments
 (0)