We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad55ac6 commit 39c2098Copy full SHA for 39c2098
src/html_gen/schema.ts
@@ -2,15 +2,15 @@ import * as fs from "fs";
2
import * as path from "path";
3
4
export function generateFileList() {
5
- const timetablePath = path.join(__dirname, "../Stundenplan");
+ const timetablePath = path.join(__dirname, "../Timetable");
6
const examsPath = path.join(__dirname, "../Exams");
7
const examFiles = fs.readdirSync(examsPath);
8
const timetableFiles = fs.readdirSync(timetablePath);
9
10
let html = "<ul>";
11
html += "<h1>Stundenplan</h1><hr>";
12
timetableFiles.forEach((file) => {
13
- html += `<li><a href="./Stundenplan/${file}">${file}</a></li>`;
+ html += `<li><a href="./Timetable/${file}">${file}</a></li>`;
14
});
15
16
html += "<h1>Exams</h1><hr>";
0 commit comments