wisdom/templates/index.html.tera
2022-01-15 15:47:11 +01:00

40 lines
801 B
Text

<!DOCTYPE html5>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Wisdom</title>
<meta
charset="utf-8"
name="viewport"
/>
<style>
@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');
body {
margin: 0;
padding: 0;
}
div {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
p {
color: floralwhite;
font-size: 40pt;
text-align: center;
font-family: 'Prata', serif;
}
body {
background-color: #080808;
}
</style>
</head>
<body id="body">
<div class="main">
<p>{{wisdom}}</p>
</div>
</body>
</html>