title, description, template, hide
| title |
description |
template |
hide |
| DUO Machine Calender SLS |
DUO Machine Calender SLS |
main.html |
|
<style>
.md-content .md-typeset h1 {
display: none;
}
.md-content__button {
display: none;
}
</style>

<script>
setInterval(() => {
const img = document.getElementById("sls-status");
const host = "
https://gfa-status.web.psi.ch/"
const path = `${host}/status-sls/get-image.php?img=snapshot/sls_A_OP_StatusDisplay.png`
const url = new URL(path);
// append _t as cache buster for browser only
url.searchParams.append('_t', Date.now());
img.src = url.toString();
}, 5000);
</script>