forked from rage/java-programming
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcourse-settings.js
35 lines (34 loc) · 849 Bytes
/
course-settings.js
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
const courseSettings = {
language: "en",
name: "Introduction To Programming",
siteUrl: "https://rowtricker.github.io",
subtitle: "An introductory programming course on Java",
slug: "java-programming-i",
tmcCourse: "java-programming-i",
quizzesId: "6a635a2d-4e4b-49cc-8487-8d9cab6a74e7",
tmcOrganization: "mooc",
bannerPath: "banner.svg",
sidebarEntries: [
{
title: "About the course",
path: "/",
},
{
title: "Sessions and Support",
path: "/sessions-and-support",
},
{
title: "Grading and exams",
path: "/grading-and-exams",
},
{ separator: true, title: "Java Programming I" },
],
sidebarFuturePages: [
{ title: "Week 7", tba: "12.10." },
],
splitCourses: false,
useNewPointsVisualization: false
}
module.exports = {
default: courseSettings,
}