forked from jsdelivr/bootstrapcdn
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuptime.html
More file actions
36 lines (27 loc) · 716 Bytes
/
Copy pathuptime.html
File metadata and controls
36 lines (27 loc) · 716 Bytes
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
<?php
include 'inc/head.min.inc';
include 'inc/nav.min.inc';
?>
<!-- Uptime -->
<div class="main">
<div class="container">
<div class="row-fluid">
<div class="span12">
<div class="tabbable">
<ul class="nav nav-tabs">
<li class="active"><a href="#popular" data-toggle="tab">Uptime</a></li>
</ul>
</div>
<div class="tab-content" style="padding: 10px;">
<div class="tab-pane active" id="popular">
<iframe frameborder="0" height="630" width="920" src="http://status.bootstrapcdn.com/"></iframe>
</div>
</div>
</div>
</div>
</div> <!-- /container -->
</div>
</div>
<?php
include 'inc/footer.min.inc';
?>