summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHai Liu <hai.liu@huawei.com>2016-05-04 09:25:26 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-05-04 09:25:26 +0000
commitc448dffea456bf1a38878711f78d073b53dc060b (patch)
treeb2b9ac9ca1580d3b9dc784b844862f38dc9b7d38
parentbd4cd0beb6cf762acbb0fe8a4e45143d5e57074d (diff)
parentb4570ca444dbec28edc5cc75373b72f8db67ebfb (diff)
Merge "Add the layout dashboard code for data collection"
-rw-r--r--predPy/templates/layout.html38
1 files changed, 38 insertions, 0 deletions
diff --git a/predPy/templates/layout.html b/predPy/templates/layout.html
new file mode 100644
index 0000000..a06e5ae
--- /dev/null
+++ b/predPy/templates/layout.html
@@ -0,0 +1,38 @@
+$def with (content)
+
+<html>
+ <head>
+ <title>Failure Prediction</title>
+
+ <link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css'>
+ <link href='http://fonts.googleapis.com/css?family=Oleo+Script' rel='stylesheet' type='text/css'>
+
+ <style>
+ body {
+ margin-top: 60px;
+ }
+
+ h2 {
+ font: 200 30px/1.3 Helvetica, sans-serif;
+ color: #2b2b2b;
+ }
+
+ .input-box {
+ width: 600px;
+ line-height: 29px;
+ }
+</style>
+</head>
+
+<body>
+ <div class="container">
+ <div class="jumbotron">
+ <div class="row">
+ $:content
+ </div>
+ </div>
+ </div>
+
+</body>
+
+</html>