-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathonpage.html
40 lines (32 loc) · 1.26 KB
/
onpage.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content='' name='description' />
<meta content='' name='author' />
<title>Alert List</title>
<!-- <link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css" /> -->
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> -->
<link href="css/main.css" rel="stylesheet">
</head>
<body>
<div class="container-fluid">
<div id="global" data-id='all' data-loctype='global'>
<div class='alertlist'></div>
</div>
<div id="allpoi" data-id='all' data-loctype='poi'>
<h2>Locations</h2>
<div class='alertlist'></div>
</div>
<div id="alltrail" data-id='all' data-loctype='trail'>
<h2>Trails</h2>
<div class='alertlist'></div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/jquery/3.2.1/jquery.min.js"></script>
<script src='js/onpage.js'></script>
<!-- <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
-->
</body>
</html>