-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
executable file
·117 lines (112 loc) · 2.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
<div id="body">
<div class="content">
<div class="section">
<div class="breadcrumb" id="bred">
<span>Sei qui:</span>
<ul>
<li>
<a href="gallery.html">Galleria</a>
</li>
</ul>
</div>
<div class="gallery">
<h2>Gallery</h2>
<ul>
<li>
<img src="images/jobs/gallery_01.gif" alt="">
<!--<h4><a href="">Ingrandisci</a></h4>-->
<p>
Controsoffitto con parquette
</p>
</li>
<li>
<img src="images/jobs/gallery_02.gif" alt=""><
<!--<h4><a href="">Ingrandisci</a></h4>-->
<p>
Controsoffitto con scala interna
</p>
</li>
<li>
<img src="images/jobs/gallery_03.gif" alt="">
<!--<h4><a href="">Ingrandisci</a></h4>-->
<p>
Termocamino
</p>
</li>
<li>
<img src="images/jobs/gallery_04.gif" alt="">
<!--<h4><a href="">Ingrandisci</a></h4>-->
<p>
Controsoffitto con faretti a incasso
</p>
</li>
<li>
<img src="images/jobs/gallery_05.gif" alt="">
<!--<h4><a href="">Ingrandisci</a></h4>-->
<p>
Corridoio con faretti a incasso
</p>
</li>
</ul>
</div>
</div>
<div class="sidebar" id="div_sidebar">
<div class="navigation">
<h3>Visita anche</h3>
<ul>
<li>
<a href="about.html">L'Azienda</a>
</li>
<li>
<a href="team.html">La Squadra</a>
</li>
<li>
<a href="services.html">Servizi</a>
</li>
<li>
<a href="contact.html">Contatti</a>
</li>
<li>
<a href="about.html">Chi Siamo</a>
</li>
<li class="selected">
<a href="gallery.html">Galleria</a>
</li>
</ul>
</div>
<div class="post">
<h3>ultimi post sui social</h3>
<ul>
<!--
<li>
<a href="blog.html" class="figure"><img src="" alt=""></a>
<div>
<span><a href="blog.html">Post 1</a></span>
<p>
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx ...
</p>
</div>
</li>
-->
</ul>
</div>
</div>
</div>
</div>
<script>
$('#div_gallery a').click(function(e){
//alert(jQuery(this).attr("id"));
e.preventDefault();
$('#div_body').load(this.getAttribute('href'));
});
$('#bred a').click(function(e){
//alert(jQuery(this).attr("id"));
e.preventDefault();
$('#div_body').load(this.getAttribute('href'));
});
$('#div_sidebar a').click(function(e){
//alert(jQuery(this).attr("id"));
e.preventDefault();
$('#div_body').load(this.getAttribute('href'));
});
</script>