-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomedash.html
145 lines (87 loc) · 3.61 KB
/
homedash.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<head>
<title>homedash</title>
<link rel="icon" href="/favicon.ico?v=3" type="image/x-icon" sizes="16x16 32x32">
</head>
<body>
{{> main}}
</body>
<template name="main">
<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="#">Dashboard</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 id="play" class="active tab"><a href="#">LiveBox Play <span class="sr-only">(current)</span></a></li>
<li id="router" class="tab"><a href="#">ChromeCast</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div id="content">
<!-- Tab play -->
<div class="navtab visible play">
<div class="row">
<div class="col-md-6">
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">Play</h3>
</div>
<div class="panel-body">
<h3>Networking</h3>
<p><code title="Mac Address">{{macPlay}}</code></p>
<span class='label {{wol}}' title="WoL">Wake on LAN</span>
<h3>Services</h3>
<span class='label {{standby}}' title="TVbox">TV Box</span>
</div>
</div>
<div class="panel panel-success">
<div class="panel-heading">
<h3 class="panel-title">Telephone</h3>
</div>
<div class="panel-body">
<h3>Missed calls</h3>
<h3>Voice mails</h3>
</div>
</div>
</div>
<div class="col-md-6">
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title">Router</h3>
</div>
<div class="panel-body">
<h3>Networking</h3>
<p><code title="Mac Address">{{macRouter}}</code></p>
<span class='label {{linkstate}}' title="status">
Link Status
<span class="glyphicon glyphicon-remove-sign" aria-hidden="true"></span>
<span class="glyphicon glyphicon-ok-sign" aria-hidden="true"></span>
</span>
<h3>Services</h3>
<span class='label {{iptv}}' title="IPTV status">
IPTV service Status
<span class="glyphicon glyphicon-remove-sign" aria-hidden="true"></span>
<span class="glyphicon glyphicon-ok-sign" aria-hidden="true"></span>
</span>
</div>
</div>
</div>
</div>
<!-- Tab router -->
<div class="navtab chromecast">
<h3>ChromeCast</h3>
</div>
</div>
<!-- end id content -->
</div>
</template>