Logbook
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Joakim Svensson 2025-07-21 23:00:28 +00:00
parent 9a9b0c046a
commit fd5cce9e1c
1 changed files with 68 additions and 0 deletions

68
docs/logbook.md Normal file
View File

@ -0,0 +1,68 @@
---
title: Cloudlog
---
<div class="ascii-wrapper">
<pre><code><div align="center">
__ ______ ______ _______ ______ ______ __ __
|\_\ /\_____\ /\_____\ |\______\ /\_____\ /\_____\ |\_\ /\_\
| XX |\ XXXXXX\ |\ XXXXXX\ | XXXXXXX\ |\ XXXXXX\ |\ XXXXXX\ | XX / XX
| XX | XX | XX | XX __\XX | XX__/ XX | XX | XX | XX | XX | XX/ XX
| XX | XX | XX | XX|\ __\ | XX XX | XX | XX | XX | XX | XX XX
| XX | XX | XX | XX \XXXX | XXXXXXX\ | XX | XX | XX | XX | XXXXX\
| XX_____ | XX__/\XX | XX__| XX | XX__/\XX | XX__/\XX | XX__/\XX | XX \XX\
| XX ____\ \XX _\/XX \XX __\XX | XX _\/XX \XX _\/XX \XX _\/XX | XX \XX\
\XXXXXXXX \XXXXXX \XXXXXX \XXXXXXX \XXXXXX \XXXXXX \XX \XX
SA6ANW 20250722
</div></code></pre>
</div>
<style>
#cloudlog-wrapper {
max-width: 800px;
border: 2px solid #888;
border-radius: 8px;
background-color: var(--md-default-bg-color);
padding: 0;
margin-bottom: 2rem;
overflow: hidden;
box-sizing: border-box;
}
#cloudlog {
width: 100%;
border: none;
display: block;
}
</style>
<script>
function setIframeHeight() {
const iframe = document.getElementById("cloudlog");
if (!iframe) return;
const windowWidth = window.innerWidth;
iframe.style.height = windowWidth < 612 ? "2100px" : "1600px";
}
document.addEventListener("DOMContentLoaded", () => {
const iframe = document.getElementById("cloudlog");
if (iframe) {
iframe.src = "https://wavelog.sa6anw.se/visitor/alpha";
}
setIframeHeight(); // Sätt rätt höjd direkt
});
window.addEventListener("resize", setIframeHeight); // Ändra höjd vid fönsterändring
</script>
<div id="cloudlog-wrapper">
<iframe
id="cloudlog"
width="100%"
style="border: none;"
scrolling="no"
></iframe>
</div>