26 lines
No EOL
519 B
Handlebars
26 lines
No EOL
519 B
Handlebars
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{{title}}</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
pre {
|
|
background: #f0f0f0;
|
|
padding: 10px;
|
|
overflow-x: auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>{{title}}</h1>
|
|
<div>{{{content}}}</div>
|
|
<footer>
|
|
<small>Template: minimal | Path: {{path}}</small>
|
|
</footer>
|
|
</body>
|
|
</html> |