caddydb/templates/index.html
2025-03-10 18:24:23 +01:00

35 lines
912 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Zentrales Caddy-Dashboard</title>
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
</head>
<body>
<header>
<h1>Zentrales Caddy-Dashboard</h1>
</header>
<main>
{% for server, entries in proxies.items() %}
<h2>{{ server }}</h2>
<table>
<thead>
<tr>
<th>Domain</th>
<th>Ziel</th>
</tr>
</thead>
<tbody>
{% for domain, target in entries.items() %}
<tr>
<td><a href="https://{{ domain }}" target="_blank">{{ domain }}</a></td>
<td>{{ target }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endfor %}
</main>
</body>
</html>