aboutsummaryrefslogtreecommitdiff
path: root/templates/layout.html
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2020-02-26 17:45:25 +0100
committerAlex Auvolat <alex@adnab.me>2020-02-26 17:45:25 +0100
commitd1b66d30883c9e5fda0c4cace494dec74d7df024 (patch)
tree02d4b8a244ae2538966ea6384da11edd171de679 /templates/layout.html
parent4270202972ec80ca98a5159e30978378194c1b41 (diff)
downloadeasybridge-d1b66d30883c9e5fda0c4cace494dec74d7df024.tar.gz
easybridge-d1b66d30883c9e5fda0c4cace494dec74d7df024.zip
Stub web interface
Diffstat (limited to 'templates/layout.html')
-rw-r--r--templates/layout.html18
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>