vm-bench/frontend/templates/base.html

26 lines
556 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">
</head>
<body>
<header>
<div class="logo">VM Bench</div>
<div class="sub">Proxmox Image Conversion</div>
</header>
<div class="container">
{% block content %}{% endblock %}
</div>
<footer>
<span>vm-bench frontend</span>
<span>Backend: {{ backend_url or "10.2.0.2:9000" }}</span>
</footer>
</body>
</html>