cyberman/views/layouts/main.tt

37 lines
542 B
Plaintext
Raw Normal View History

2017-07-14 21:06:28 +02:00
<!DOCTYPE HTML>
<html lang=en>
<head>
<meta charset="utf8" />
2017-07-14 21:18:14 +02:00
<meta name="viewport" content="width=device-width" />
2017-07-14 21:06:28 +02:00
<style>
* {
margin: 0;
}
body, a {
background-color: black;
font-family: monospace;
color: white;
font-size: 14px;
line-height: 1.6em;
}
p {
margin-bottom: 0.8em;
}
.body {
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
2017-07-14 21:18:14 +02:00
a.bracketButton {
text-decoration: none;
}
a.bracketButton:hover {
text-decoration: underline;
}
2017-07-14 21:06:28 +02:00
</style>
</head>
<body>
<% content %>
</body>
2017-07-14 19:29:52 +02:00
</html>