Files
sethtest/templates/index.html
T
Scaffolder 59c9a95154
deploy / deploy (push) Successful in 4m48s
initial commit
Change-Id: If4e8a826d76819817e111cc7477a135f0c871db9
2026-05-13 18:29:35 +00:00

53 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{{ name }}</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
color: #0f172a;
background: #f8fafc;
}
main {
max-width: 760px;
margin: 6rem auto;
padding: 0 1.5rem;
}
section {
background: #ffffff;
border: 1px solid #dbe3ee;
border-radius: 8px;
padding: 2rem;
}
h1 {
margin-top: 0;
}
p,
li {
line-height: 1.6;
color: #334155;
}
</style>
</head>
<body>
<main>
<section>
<h1>{{ name }}</h1>
<p>{{ description }}</p>
<ul>
<li>Backed by Flask and Gunicorn</li>
<li>Container listens on port 8080</li>
<li>Health check is available at <code>/health</code></li>
</ul>
</section>
</main>
</body>
</html>