33 lines
458 B
HTML
33 lines
458 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>
|
|
</head>
|
|
<body>
|
|
<pre>
|
|
{{title}}
|
|
|
|
guestbook
|
|
=========
|
|
|
|
{{form}}
|
|
|
|
entries
|
|
=======
|
|
{{entries}}
|
|
</pre>
|
|
</body>
|
|
</html>
|