guichet/templates/layout.html

21 lines
538 B
HTML
Raw Permalink Normal View History

2020-02-09 14:44:18 +00:00
<!doctype html>
<html>
<head>
<meta charset="utf-8">
2020-02-09 15:46:26 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2020-02-09 15:19:55 +00:00
<link rel="stylesheet" href="/static/css/bootstrap.min.css">
2020-02-09 15:46:26 +00:00
<title>{{template "title" .}} Guichet</title>
2020-02-09 14:44:18 +00:00
</head>
<body>
<div class="container mb-4">
2020-02-09 15:46:26 +00:00
<h1>Guichet Deuxfleurs💮💮</h1>
<hr />
2020-02-09 14:44:18 +00:00
{{template "body" .}}
</div>
2023-04-18 17:37:51 +00:00
<script src="/static/javascript/jquery.slim.min.js"></script>
<script src="/static/javascript/bootstrap.bundle.min.js"></script>
2020-02-09 14:44:18 +00:00
</body>
</html>