Files
orbits/web/templates/index.html
T
2026-04-20 16:58:20 +02:00

51 lines
1013 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Eden: {{ .title }}</title>
<style>
body {
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: Arial, sans-serif;
background: linear-gradient(135deg, #2ecc71, #27ae60);
color: white;
text-align: center;
}
.container {
padding: 20px;
}
h1 {
font-size: 2.2rem;
margin: 0;
}
p {
margin-top: 10px;
font-size: 1.1rem;
opacity: 0.9;
}
.tagline {
margin-top: 20px;
font-size: 0.95rem;
opacity: 0.8;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to EDEN</h1>
<div class="tagline">Version: {{ .version }}, Codename: {{ .title }}</div>
<div class="tagline">Monitoring the engagement. Displaying the future.</div>
</div>
</body>
</html>