Abyss/templates/hello.html

28 lines
576 B
HTML
Raw Permalink Normal View History

2023-10-22 20:48:14 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ name }}</title>
<style>
body {
2023-10-23 12:22:51 -04:00
background-color: #36393f;
2023-10-22 20:48:14 -04:00
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
h1 {
2023-10-23 12:22:51 -04:00
color: #ffffff;
2023-10-22 20:48:14 -04:00
font-size: 36px;
text-align: center;
}
</style>
</head>
<body>
<h1>{{ name }}</h1>
</body>
</html>