forked from bhaskarmac/simplegallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (27 loc) · 809 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/png" href="img/favicon.png"/>
<title>Simple image gallery</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/styles.css">
<script src="js/jquery-2.2.4.min.js" type="text/javascript"></script>
<script src="js/myscript.js" type="text/javascript"></script>
</head>
<body>
<div class="overlay">
<div class="content">
<a href="#" class="closebtn">×</a>
<a class="navigationControls prev">❮</a>
<a class="navigationControls next">❯</a>
<img src="" class="img-responsive bigImage"/>
<div class="imageTitle"></div>
</div>
</div>
<div class="container">
<ul class="row galleryContainer">
</ul>
</div>
</body>
</html>