guichet/templates/layout.html

15 lines
298 B
HTML
Raw Normal View History

2020-02-09 14:44:18 +00:00
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>{{template "title"}}</title>
2020-02-09 15:19:55 +00:00
<link rel="stylesheet" href="/static/css/bootstrap.min.css">
<link rel="stylesheet" href="/static/css/main.css">
2020-02-09 14:44:18 +00:00
</head>
<body>
<div id="contents">
{{template "body" .}}
</div>
</body>
</html>