1
0
Fork 0
mirror of https://github.com/quatalog/site.git synced 2025-01-15 17:16:54 +00:00
quatalog-site/coursedisplay.html
2024-05-15 20:10:37 +00:00

23 lines
449 B
HTML

<html>
<head>
<script>
const params = window
.location
.search
.slice(1)
.split("&")
.map(p => p.split("="))
.reduce((obj,[key,value]) =>
({ ...obj, [key]: decodeURIComponent(value) }),
{}
);
const course = params["course"];
if(course != undefined) {
window.location.replace("courses/"+(params["course"]));
} else {
window.location.replace(".");
}
</script>
</head>
</html>