forked from templates/starter
27 lines
1.2 KiB
HTML
27 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Deploy pipeline OK</title>
|
|
<style>
|
|
:root { color-scheme: dark; }
|
|
body { margin:0; min-height:100vh; display:grid; place-items:center;
|
|
font-family: ui-sans-serif, system-ui, sans-serif; background:#0b0d12; color:#e8eaf0; }
|
|
.card { text-align:center; padding:40px 48px; border:1px solid #232838;
|
|
border-radius:16px; background:#12151d; box-shadow:0 12px 40px rgba(0,0,0,.45); }
|
|
.dot { display:inline-block; width:10px; height:10px; border-radius:50%;
|
|
background:#3fd17a; box-shadow:0 0 12px #3fd17a; margin-right:8px; }
|
|
h1 { font-size:24px; margin:0 0 8px; font-weight:600; }
|
|
p { margin:4px 0; color:#9aa3b5; font-size:14px; }
|
|
code { font-family: ui-monospace, monospace; color:#cdd6e2; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main class="card">
|
|
<h1><span class="dot"></span>Deploy pipeline OK</h1>
|
|
<p>Served from the platform via <code>Forgejo Actions</code> + Caddy.</p>
|
|
<p>Static deploy from <code>e0940758/starter</code> — first push test.</p>
|
|
</main>
|
|
</body>
|
|
</html>
|