-
Notifications
You must be signed in to change notification settings - Fork 42
/
index.html
38 lines (37 loc) · 1.08 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
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery.js"></script>
<title>Hello World</title>
</head>
<body>
<!-- Do the things here -->
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<h1>Hello World</h1>
</div>
</div>
<div class="row">
<div class="col-xs-4">
<h2>Sidebar</h2>
<div id="result-list"></div>
</div>
<div class="col-xs-8">
<h2>Slideshow</h2>
<div>
<h3 id="result-name">Slideshow starting...</h3>
<img id="result-img">
<div>
<span id="result-details"></span>
</div>
</div>
</div>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>