35 lines
470 B
Plaintext
35 lines
470 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{{.Child.Title}}</title>
|
|
<style>
|
|
body {
|
|
background-color: #161815;
|
|
color: #e2c558;
|
|
font-family: monospace;
|
|
margin: 2em;
|
|
}
|
|
body > * {
|
|
max-width: 40em;
|
|
margin: auto;
|
|
}
|
|
a {
|
|
color: #3d808f;
|
|
}
|
|
code {
|
|
outline: 1px solid #FFF4;
|
|
background-color: #FFF2;
|
|
border-radius: 2px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<main>
|
|
<h1>{{.Child.Title}}</h1>
|
|
{{.Child.Body | markdownHTML}}
|
|
</main>
|
|
|
|
</body>
|
|
</html>
|