13 lines
232 B
HTML
13 lines
232 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{template "title"}}</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<div id="contents">
|
|
{{template "body" .}}
|
|
</div>
|
|
</body>
|
|
</html>
|