webtgbot-rs/templates/index.html

37 lines
860 B
HTML
Raw Permalink Normal View History

2023-07-21 18:50:01 +04:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Test</title>
<style>
body {
margin: 0;
padding: 0;
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: #202022;
color: #eee;
font-family: sans-serif;
}
h1 {
margin: 0;
padding: 0;
font-size: 2rem;
font-weight: 600;
}
</style>
</head>
<body>
<h1>Hello, {{ name }}!</h1>
</body>
</html>