diff options
Diffstat (limited to 'templates/layout.html')
-rw-r--r-- | templates/layout.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/layout.html b/templates/layout.html new file mode 100644 index 0000000..e67da05 --- /dev/null +++ b/templates/layout.html @@ -0,0 +1,18 @@ +<!doctype html> +<html> +<head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> + + <link rel="stylesheet" href="/static/css/bootstrap.min.css"> + + <title>{{template "title"}} Easybridge</title> +</head> +<body> + <div class="container"> + <h1>Easybridge manager</h1> + <hr /> + {{template "body" .}} + </div> +</body> +</html> |