ソースを参照

inital commit

BaumSplitter41 1 日 前
コミット
51526351fd
3 ファイル変更41 行追加0 行削除
  1. 1 0
      README.md
  2. 16 0
      css/style.css
  3. 24 0
      index.html

+ 1 - 0
README.md

@@ -0,0 +1 @@
+Static website for displaying some monitoring dashboards

+ 16 - 0
css/style.css

@@ -0,0 +1,16 @@
+html {
+    scroll-behavior: smooth;
+}
+
+body {
+  	background-color: #121212;
+	font-family: Arial, sans-serif;
+}
+
+
+footer {
+	display: flex;
+	justify-content: center;
+	color: whitesmoke;
+
+}

+ 24 - 0
index.html

@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>BaumSplitter41</title>
+    <link rel="stylesheet" href="css/style.css">
+    <link rel="icon" type="image/png" href="../assets/Logo_BaumSplitter41_transparent.png"/>
+</head>
+<body>
+    <iframe 
+        src="https://grafana.baumsplitter41.tech/public-dashboards/65f52d4d8aa24fdc935e17e7b2dc693b"
+        width="100%"
+        height="600"
+        style="border:1px solid #ccc; border-radius:8px;">
+    </iframe>
+
+
+</body>
+
+<footer>
+	<p>© 2026 baumsplitter41.eu</p>
+</footer>
+</html>