Skip to content

Commit 39c2098

Browse files
Changed studenplan to timetable
1 parent ad55ac6 commit 39c2098

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/html_gen/schema.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ import * as fs from "fs";
22
import * as path from "path";
33

44
export function generateFileList() {
5-
const timetablePath = path.join(__dirname, "../Stundenplan");
5+
const timetablePath = path.join(__dirname, "../Timetable");
66
const examsPath = path.join(__dirname, "../Exams");
77
const examFiles = fs.readdirSync(examsPath);
88
const timetableFiles = fs.readdirSync(timetablePath);
99

1010
let html = "<ul>";
1111
html += "<h1>Stundenplan</h1><hr>";
1212
timetableFiles.forEach((file) => {
13-
html += `<li><a href="./Stundenplan/${file}">${file}</a></li>`;
13+
html += `<li><a href="./Timetable/${file}">${file}</a></li>`;
1414
});
1515

1616
html += "<h1>Exams</h1><hr>";

0 commit comments

Comments
 (0)