You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
blackout21/views/html.hbs

66 lines
884 B
Handlebars

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/png" href="/favicon.png">
<title>{{title}}</title>
<style>
html, body {
margin: 0;
background-color: black;
color: white;
font-family: sans-serif;
line-height: 125%;
}
html {
padding: 0;
}
body {
padding: .5rem;
font-size: 1.2rem;
}
header {
text-align: center;
}
.gray {
color: rgb(50,50,50);
}
main {
margin: auto;
max-width: 80rem;
}
main > * {
margin: 1rem;
}
main > *:first-child() {
margin-top: 0;
}
main > *:last-child() {
margin-bottom: 0;
}
a:any-link {
color: inherit;
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>{{title}}</h1>
</header>
<main>
{{{body}}}
</main>
</body>
</html>