Files
DokkuStatus/templates/index.html
Peter Stockings 0810acb7e9 Initial setup
2025-12-22 12:14:37 +11:00

56 lines
1.1 KiB
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Status - peterstockings.com</title>
<script src="https://unpkg.com/htmx.org@1.9.10"></script>
<style>
body {
font-family: system-ui, Arial;
margin: 24px;
}
table {
border-collapse: collapse;
width: 100%;
}
th,
td {
border-bottom: 1px solid #ddd;
padding: 8px;
vertical-align: top;
}
th {
text-align: left;
}
.muted {
color: #666;
font-size: 0.9em;
}
.pill {
display: inline-block;
padding: 2px 8px;
border-radius: 999px;
background: #eee;
}
</style>
</head>
<body>
<h1>Status</h1>
<div class="muted">
Auto-refresh every {{ poll_seconds }}s
· <a href="/api/status">JSON</a>
</div>
<div hx-get="/partial/apps" hx-trigger="load, every {{ poll_seconds }}s" hx-swap="innerHTML">
Loading…
</div>
</body>
</html>