mhmmcontent/sample/layout/minimal.hbs

26 lines
519 B
Handlebars
Raw Normal View History

2026-01-28 20:56:35 +01:00
<!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>