diff options
author | Linghui Zeng <linghui.zeng@huawei.com> | 2016-04-21 17:08:05 +0800 |
---|---|---|
committer | Linghui Zeng <linghui.zeng@huawei.com> | 2016-04-21 17:08:05 +0800 |
commit | b4570ca444dbec28edc5cc75373b72f8db67ebfb (patch) | |
tree | 4011276bdca26341ad719f1d558e3db2fe0032e6 /predPy/templates/layout.html | |
parent | 79d3c6c1e9a68792d315aed5f50d5ae0ac6d8d68 (diff) |
Add the layout dashboard code for data collection
JIRA: PREDICTION-51
Change-Id: I63b96fd096ba4386bbd8ecffb17aeea620970968
Signed-off-by: Linghui Zeng <linghui.zeng@huawei.com>
Diffstat (limited to 'predPy/templates/layout.html')
-rw-r--r-- | predPy/templates/layout.html | 38 |
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> |