forked from zhiminliu/docker-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nav.html
79 lines (79 loc) · 2.89 KB
/
nav.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<html>
<head>
<!--<link rel="stylesheet" href="static/xterm.css" />-->
<!--<link rel="stylesheet" href="static/fullscreen.css" />-->
<link rel="stylesheet" href="static/bootstrap.min.css" />
<!--<script src="static/xterm.js"></script>-->
<!-- <script src="static/fullscreen.js"></script>-->
<script src="static/jquery.min.js"></script>
<script src="static/highstock.js"></script>
<script src="static/bootstrap.min.js"></script>
<style>
body {
color: #111;
}
table {
font-size:12px;
}
.row {
margin-left: 10px;
margin-right: 10px;
}
.well_row {
width: 500px;
margin: auto;
}
.form_row {
margin: 10 10 10 10;
}
</style>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">
Toggle navigation
</span>
<span class="icon-bar">
</span>
<span class="icon-bar">
</span>
<span class="icon-bar">
</span>
</button>
<a class="navbar-brand" href="#">
Docker监控平台
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="">
<a href="./machine_info?action=select">
服务器列表
</a>
</li>
<li>
<a href="./containers_status?action=select&ip=&container_id=">
监控列表
</a>
</li>
<li>
<a href="#">
api接口
</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
{% block body %}
{% end %}
</body>
</html>