55 lines
860 B
Plaintext
55 lines
860 B
Plaintext
---
|
|
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>My Site</title>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>Welcome to EmDash</h1>
|
|
<p>Your site is ready. Open the <a href="/_emdash/admin">admin panel</a> to start adding content.</p>
|
|
</main>
|
|
|
|
<style>
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
color: #1a1a1a;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
main {
|
|
text-align: center;
|
|
padding: 2rem;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2rem;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
p {
|
|
color: #6b7280;
|
|
font-size: 1.0625rem;
|
|
}
|
|
|
|
a {
|
|
color: #1a1a1a;
|
|
}
|
|
</style>
|
|
</body>
|
|
</html>
|