-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpat-gallery.html
More file actions
26 lines (23 loc) · 903 Bytes
/
pat-gallery.html
File metadata and controls
26 lines (23 loc) · 903 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>My Gallery Pattern demo</title>
<script type="text/javascript" src="patterns-1.5.0-7762d27e.min.js"></script>
<link type="text/css" rel="stylesheet" href="patterns.css">
</head>
<body>
<!--
<ul class="pat-gallery">
<li><a href="pic1.jpg"><img src="thumb1.jpg" title="Image 1 caption"/></a></li>
<li><a href="pic2.jpg"><img src="thumb2.jpg" title="Image 2 caption"/></a></li>
<li><a href="pic3.jpg"><img src="thumb3.jpg" title="Image 3 caption"/></a></li>
</ul>
-->
<nav class="pat-gallery" data-pat-gallery="hide-overlay: 0">
<a href="pic1.jpg"><img src="thumb1.jpg" title="Image 1 caption"/></a>
<a href="pic2.jpg"><img src="thumb2.jpg" title="Image 2 caption"/></a>
<a href="pic3.jpg"><img src="thumb3.jpg" title="Image 3 caption"/></a>
</nav>
</body>
</html>