-
Notifications
You must be signed in to change notification settings - Fork 75
/
boilerplate.html
28 lines (26 loc) · 1.28 KB
/
boilerplate.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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="description" content="Leanorama - Panoramic images viewer">
<meta name="viewport" content="width=device-width">
<title>Leandigo | Leanorama panoramic viewer</title>
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
<script src="js/jquery.transit.js"></script>
<script src="js/jquery.leanorama.js"></script>
<script src="js/jquery.leanorama.hotspot.js"></script>
<script src="js/jquery.leanorama.controlbar.js"></script>
<script src="js/jquery.leanorama.infobox.js"></script>
<link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/leanorama.css">
<link rel="stylesheet" href="css/leanorama.hotspot.css">
<link rel="stylesheet" href="css/leanorama.controlbar.css">
<link rel="stylesheet" href="css/leanorama.infobox.css">
</head>
<body>
<div id="pano-outer">
<div id="pano"></div>
</div>
</body>
</html>