-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
34 lines (29 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<title>Watchful Eyes</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="./bower_components/rapid-screensaver/dist/css/rapid-screensaver.min.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div id="screensaver" class="screensaver" style="display: none;"></div>
<div id="urlObjects"></div>
<div id="groupTemplate">
<div id="[[id]]Group">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">[[name]]</h3>
</div>
<div class="panel-body">
<p>[[description]]</p>
<div class="sites"></div>
</div>
</div>
</div>
<div class="clear"></div>
</div>
<script src="./js/script.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
</body>
</html>