use teapot

This commit is contained in:
41666 2025-04-21 19:49:43 -07:00
parent 5378572327
commit 8502a4de48
7 changed files with 227 additions and 7 deletions

29
layouts/default.html Normal file
View file

@ -0,0 +1,29 @@
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<title>%%TITLE%%:41666</title>
<style>
:root {
--red1: #a20000;
--red2: #c20000;
--dark1: #071213;
--dark2: #000000;
}
body {
background-color: var(--dark1);
color: var(--red2);
font-family: monospace;
margin: 0;
padding: 0;
}
main {
margin: 2rem;
}
</style>
%%HEAD%%
</head>
<body>
<main>%%CONTENT%%</main>
</body>