-
Notifications
You must be signed in to change notification settings - Fork 29
/
index.html
48 lines (40 loc) · 1.27 KB
/
index.html
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
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.ico">
<title>Gitlab Pipelines TV Dashboard</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="node_modules/font-awesome/css/font-awesome.min.css">
</head>
<body>
<style>
body {
padding-top: 3.5rem;
}
table {
text-align: center;
}
.truncate {
width: 350px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.align-middle {
vertical-align: middle;
}
</style>
<nav class="navbar navbar-dark bg-dark fixed-top">
<a class="navbar-brand" href="#">Gitlab Pipelines</a>
</nav>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/popper.js/dist/umd/popper.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="node_modules/moment/min/moment.min.js"></script>
<script src="index.js"></script>
</body>
</html>