vm-bench/frontend/templates/base.html
Claus Lohmar fd4f8744d2 style: light Proxmox VE theme — white panels, blue header, light badges
Rewrote to match actual Proxmox VE light interface:
- #f0f0f0 page background, white panels
- Dark blue header (#1b3a5c) with white text
- Light gray panel headers (#f8f8f8)
- Bootstrap-style alert colors (yellow/blue/green/red)
- Orange accent throughout
2026-07-23 09:21:07 +00:00

26 lines
610 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VM Bench — Proxmox Image Converter</title>
<link rel="stylesheet" href="/static/proxmox.css?v=5">
</head>
<body>
<header class="pve-header">
<div class="pve-logo">VM Bench</div>
<div class="pve-sub">Proxmox Image Conversion</div>
</header>
<div class="pve-container">
{% block content %}{% endblock %}
</div>
<footer class="pve-footer">
<span>vm-bench frontend</span>
<span>Backend: {{ backend_url or "10.2.0.2:9000" }}</span>
</footer>
</body>
</html>