-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
executable file
·135 lines (111 loc) · 4.85 KB
/
gallery.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en">
<!--<![endif]-->
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" type="text/javascript"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js" type="text/javascript"></script>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet" />
<link href="css/base.css" type="text/css" rel="stylesheet" /> <!-- base css style for all web pages -->
<link href="css/responsive_fixes.css" type="text/css" rel="stylesheet" /> <!-- responsive fixes -->
<link href="css/gallery.css" type="text/css" rel="stylesheet" /> <!-- css style for gallery -->
<link href="css/modal.css" type="text/css" rel="stylesheet" /> <!-- css style for modal -->
<link rel="shortcut icon" href="images/favicon.png" type="image/png" />
<script src="/socket.io/socket.io.js" type="text/javascript"></script>
<script src="lib/toubkal-min.js" type="text/javascript"></script>
<script src="contact_form_fields.js" type="text/javascript"></script>
<script src="js/hammer.js" type="text/javascript"></script>
<script src="js/jquery.easing.1.3.js" type="text/javascript"></script>
<script src="js/jquery.ui.totop.js" type="text/javascript"></script>
<title>CastorCAD ::: Galerie</title>
<!--[if lt IE 9]>
<script type="text/javascript" src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<link href="css/ie8.css" type="text/css" rel="stylesheet"/>
<![endif]-->
</head>
<body>
<section class="message-top"></section>
<!-- header: start -->
<header class="header">
<div class="container">
<div class="row">
<div class="logo">
<a href="index.html"><img src="images/logo.png" alt="CastorCAD: Logo" /></a>
</div>
<nav id="navigation" class="menu">
<ul>
<li><a href="index.html">Accueil</a></li>
<li class="current"><a href="gallery.html">Galerie</a></li>
</ul>
</nav>
</div>
</div>
</header>
<!-- header: end -->
<!-- content: start -->
<section id="container">
<div class="container">
<!-- Gallery: start -->
<div class="row gallery">
<div id="gallery_carousel"></div>
<div class="gallery-thumbnails-controls right">
<span class="glyphicon glyphicon-chevron-right"></span>
</div>
<div class="gallery-thumbnails-controls left">
<span class="glyphicon glyphicon-chevron-left"></span>
</div>
<div class="gallery-thumbnails-container">
<div id="gallery_thumbnails" class="viewport"></div>
</div>
</div>
<!-- Gallery: end -->
</div>
</section>
<!-- content: end -->
<!-- footer: start -->
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-md-4">
<h3>Contact</h3>
<div id="contact_form"></div>
</div>
<div class="col-md-5"></div>
<div class="col-md-3">
<h3>Adresse</h3>
<address>
<p>CastorCAD</p>
<p><span class="glyphicon glyphicon-home"></span> Marrakech - Maroc</p>
<p><span class="glyphicon glyphicon-envelope"></span> [email protected]</p>
<p><span class="glyphicon glyphicon-earphone"></span> +212 6 61 19 75 95</p>
</address>
</div>
</div>
</div>
</footer>
<!-- footer: end -->
<!-- footer menu: start -->
<section class="footer-menu">
<div class="container">
<div class="row">
<div class="col-md-8 hidden-xs">
<ul>
<li><a href="index.html">Accueil</a></li>
<li><a href="gallery.html">Galerie</a></li>
</ul>
</div>
<p class="col-md-4"><span class="pull-right">Copyright © 2014 - CastorCAD</span></p>
</div>
</div>
</section>
<!--footer menu: end -->
<script src="js/navigation.js" type="text/javascript"></script>
<script src="js/gallery.js" type="text/javascript"></script>
<script src="js/contact.js" type="text/javascript"></script>
</body>
</html>