Files
gitea-pages/docs/status.md
armborst_f f00ac076ff
All checks were successful
Build and Deploy Documentation / build-and-deploy (push) Successful in 22s
gfa-status becomes cas-status
2026-02-23 14:53:13 +01:00

54 lines
1.1 KiB
Markdown

---
title: DUO Machine Calender SLS
description: DUO Machine Calender SLS
template: main.html
hide:
- toc
- navigation
---
<style>
.md-content .md-typeset h1 {
display: none;
}
.md-content__button {
display: none;
}
</style>
<!-- <div id="duolistparent">
<iframe
marginwidth="0"
marginheight="0"
hspace="0"
vspace="0"
frameborder="0"
scrolling="no"
style="height:1000px; width:100%; border:none;"
src="https://gfa-status.web.psi.ch/status-sls/"
id="Iframe"></iframe>
</div> -->
<img
alt="sls-status not found"
id="sls-status"
style="width: 100%; height: 100%; object-fit: cover;"
src="_images/202601_snapshot_sls_A_OP_StatusDisplay.png">
<script>
setInterval(() => {
const img = document.getElementById("sls-status");
const host = "https://cas-status.psi.ch/status-sls"
const path = `${host}/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>