guichet/templates/layout.html
2020-02-09 16:19:55 +01:00

15 lines
298 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>{{template "title"}}</title>
<link rel="stylesheet" href="/static/css/bootstrap.min.css">
<link rel="stylesheet" href="/static/css/main.css">
</head>
<body>
<div id="contents">
{{template "body" .}}
</div>
</body>
</html>