yesod/examples/template.html
2009-12-17 19:27:03 +02:00

27 lines
452 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>$o.title$</title>
<style>
body {
background-color: #ffc;
}
#wrapper {
width: 600px;
margin: 2em auto;
background-color: #fefefe;
border: 1px solid black;
padding: 1em;
font-family: sans-serif;
}
</style>
</head>
<body>
<div id="wrapper">
$o.content$
</div>
</body>
</html>