guestbook/templates/default.html

34 lines
470 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{title}}</title>
<style>
pre {
font: unset;
max-width: 70ch;
margin: 0 auto;
padding: 1rem;
white-space: pre-wrap;
word-wrap: break-word;
}
</style>
{{style}}
</head>
<body>
<pre>
{{title}}
guestbook
=========
{{form}}
entries
=======
{{entries}}
</pre>
</body>
</html>