66 lines
940 B
Plaintext
66 lines
940 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ name }}</title>
|
|
<style>
|
|
@page {
|
|
size: letter;
|
|
margin: 0.5in;
|
|
}
|
|
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
max-width: 100ch;
|
|
/* 100 characters max width */
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
table-layout: fixed;
|
|
border-collapse: collapse;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
text-align: left;
|
|
padding: 8px;
|
|
border-bottom: 1px solid #ddd;
|
|
vertical-align: top;
|
|
}
|
|
|
|
ul {
|
|
padding-left: 20px;
|
|
}
|
|
|
|
li {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.section {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.section h2 {
|
|
border-bottom: 2px solid #333;
|
|
padding-bottom: 5px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
{{ content }}
|
|
</body>
|
|
|
|
</html>
|