-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcalendars.ts
43 lines (40 loc) · 1.15 KB
/
calendars.ts
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
import {Application} from "express";
interface Calendar {
sefariaCalendarName: string;
webTitleName: string;
webTitleNameHebrew: string;
todaysNoun: string;
todaysNounHebrew: string;
todaysNounError: string;
route: string;
}
const calendars: Calendar[] = [{
sefariaCalendarName: "Daf Yomi",
webTitleName: "Daf Yomi",
webTitleNameHebrew: "דף היומי",
todaysNoun: "Daf",
todaysNounHebrew: "דף היומי",
todaysNounError: "daf",
route: "/daf-yomi",
}, {
sefariaCalendarName: "Daily Mishnah",
webTitleName: "Mishna Yomi",
webTitleNameHebrew: "משנה יומית",
todaysNoun: "Mishnayot",
todaysNounHebrew: "משנה היומית",
todaysNounError: "mishnayot",
route: "/mishna-yomit",
}, {
sefariaCalendarName: "Daily Rambam",
webTitleName: "Rambam Yomi",
webTitleNameHebrew: 'רמב"ם היומי',
todaysNoun: "Rambam",
todaysNounHebrew: 'רמב"ם היומי',
todaysNounError: "Rambam",
route: "/rambam-yomi",
}];
export function registerCalendarRoutes(app: Application): void {
for (const calendar of calendars) {
app.get(calendar.route, (req, res) => res.render("calendar.html", calendar));
}
}