blob: a06e5aead3d99a308108922414eb44476a22cc1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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>
|