Skip to content
Snippets Groups Projects
Commit 12587041 authored by ChefExperte's avatar ChefExperte
Browse files

Add calender tab showing coli calender at StuRa cloud

parent f4252fc8
No related branches found
No related tags found
No related merge requests found
import { Base } from "./Base.mjs"
export const Calendar = {
oncreate() {
document.title = "Kalender · FS Coli Portal"
},
view() {
return m(Base, [
m("section", [
m("iframe", {
src: "https://cloud.stura.uni-heidelberg.de/index.php/apps/calendar/embed/HptQm9caKgi2kirx/dayGridMonth/now",
style: {width: "90vw", height: "80vh", borderRadius: "20px", overflow: "hidden"},
frameborder: "0"
})
]),
])
},
}
......@@ -54,6 +54,13 @@ export const Nav = {
label: "Freischalten",
}),
),
m(
"li",
m(NavPageLink, {
href: "/calendar",
label: "Kalender",
}),
),
]),
),
m(
......
......@@ -3,6 +3,7 @@ import { Uni } from "./components/pages/UniServices.mjs"
import { Start } from "./components/pages/Start.mjs"
import { Unlock } from "./components/pages/Unlock.mjs"
import { Fachschaftssitzung } from "./components/pages/Fachschaftssitzung.mjs"
import { Calendar } from "./components/pages/Calendar.mjs"
import { Login } from "./components/pages/Login.mjs"
import { Me } from "./components/pages/Me.mjs"
import "/static/lib/mithril/mithril.min.js"
......@@ -15,6 +16,7 @@ m.route(document.body, "/", {
"/uni-services": Uni,
"/unlock": Unlock,
"/fachschaftssitzung": Fachschaftssitzung,
"/calendar": Calendar,
"/login": Login,
"/me": Me,
})
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment