-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
639 lines (531 loc) · 29.2 KB
/
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
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<title>Symfony Day - Torino 5 ottobre 2012</title>
<!-- Responsive and mobile friendly stuff -->
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, target-densitydpi=160dpi, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<link href='http://fonts.googleapis.com/css?family=Exo:200,900,700,400|Pacifico' rel='stylesheet' type='text/css'>
<!-- Included CSS Files -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/grid_12_percent.css">
<link rel="stylesheet" href="css/main.css">
<!--[if lt IE 9]>
<link rel="stylesheet" href="css/ie7_8.css">
<![endif]-->
<!-- IE Fix for HTML5 Tags -->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script>
function initialize_map() {
var mapOptions = {
zoom: 15,
center: new google.maps.LatLng(45.06448847650592, 7.6572346687316895),
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(document.getElementById('map_canvas'),
mapOptions);
var I3P = new google.maps.Marker({
position: new google.maps.LatLng(45.06539781596831, 7.657513618469238),
map: map,
icon: 'img/marker_i3p.png',
title:"I3P"
});
var hotel_sanpaolo = new google.maps.Marker({
position: new google.maps.LatLng(45.0598373, 7.6529137),
map: map,
icon: 'img/marker_hotel.png',
title:"Hotel Residence San Paolo"
});
var stazione_portasusa = new google.maps.Marker({
position: new google.maps.LatLng(45.068641008917346, 7.6639509201049805),
map: map,
icon: 'img/marker_trasporti.png',
title:"Stazione Metro e Treni Porta Susa"
});
var fermata_tram_tribunale = new google.maps.Marker({
position: new google.maps.LatLng(45.069232038276766, 7.660109996795654),
map: map,
icon: 'img/marker_trasporti.png',
title:"Fermata Autobus e Tram Palazzo di Giustizia"
});
var fermata_tram_ferrucci = new google.maps.Marker({
position: new google.maps.LatLng(45.06244240982845, 7.655389308929443),
map: map,
icon: 'img/marker_trasporti.png',
title:"Fermata Corso Peshiera/Ferrucci"
});
var fermata_tram_ferrucci = new google.maps.Marker({
position: new google.maps.LatLng(45.06577670314182, 7.655142545700073),
map: map,
icon: 'img/marker_trasporti.png',
title:"Fermata Corso Ferrucci/Bandiera"
});
var pizzeria = new google.maps.Marker({
position: new google.maps.LatLng(45.06510228222967, 7.654681205749512),
map: map,
icon: 'img/marker_ristoranti.png',
title:"Pizzeria Quelli Che Ben Pensano 2"
});
var pizzeria_solitiamici = new google.maps.Marker({
position: new google.maps.LatLng(45.06733769180998, 7.66270637512207),
map: map,
icon: 'img/marker_ristoranti.png',
title:"Ristorante Quattro Soldi"
});
var pizzeria_solitiamici = new google.maps.Marker({
position: new google.maps.LatLng(45.06497535380877, 7.659240961074829),
map: map,
icon: 'img/marker_ristoranti.png',
title:"Mensana - Mensa Studenti Politecnico"
});
}
</script>
</head>
<body onload="initialize_map()">
<div id="wrapper">
<div id="site_wrapper">
<div id="main_navigation">
<a name="top"></a>
<nav id="site_nav">
<ul class="container">
<li><a href="#top" title="">SymfonyDay</a></li>
<li><a href="#info" title="">La conferenza</a></li>
<li><a href="#programma" title="">Il programma</a></li>
<li><a href="#registrati" title="">Registrati</a></li>
<li><a href="#location" title="">La location</a></li>
<li><a href="#sponsorizza" title="">Gli sponsor</a></li>
<li><a href="http://www.symfonyday.it" title="prossima edizione">prossima edizione</a></li>
</ul>
</nav>
</div>
<header id="site_header" class="container">
<div class="grusp_header">
<p class="organizer"><a id="logo_grusp" class="organizer_logo" href="http://www.grusp.it/"><img src="img/logo_grusp.png" alt="logo_grusp" width="140" height="67" /><span>Associazione Gruppo Utenti Sviluppatori PHP Italiani</span></a>
<em class="plus"><img src="img/bg_plus.png" alt="bg_plus" width="12" height="12" /></em>
<a id="logo_grusp_to" class="organizer_logo" href="http://torino.grusp.org/"><img src="img/logo_grusp_to.png" alt="logo_grusp_to" width="140" height="67" /><span>PHP User Group Torino </span></a></p>
<h4>presenta</h4>
</div>
<div class="event_title">
<div class="event_logo column_3">
<img src="img/logo_symfony.png" alt="logo_symfony" />
</div>
<div class="event_name column_9">
<h1 id="fittext1">SYMFONY<em>DAY</em></h1>
<h2 id="fittext2">TORINO, 5 OTTOBRE 2012</h2>
</div>
<div class="clear"></div>
</div>
<div class="share">
<!-- AddThis Button BEGIN -->
<h4>Share</h4>
<div class="addthis_wrapper">
<div class="addthis_toolbox addthis_default_style ">
<a class="addthis_button_facebook_like" fb:like:layout="button_count" fb:like:width="120"></a>
<a class="addthis_button_tweet"></a>
<a class="addthis_button_google_plusone" g:plusone:size="medium"></a>
</div>
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=xa-4feae2dc05ce85fb"></script>
<!-- AddThis Button END -->
</div>
</div>
<div class="separator"></div>
</header>
<section class="alpha_8">
<div class="container group">
<!-- Follow us -->
<div class="follow_us">
<h4 class="deco">Seguici!</h4>
<ul class="social_grusp">
<li class="grusp_fb"><a href="https://www.facebook.com/GrUSP" title="">Facebook</a></li>
<li class="grusp_twitter"><a href="http://twitter.com/symfonydayit" title="">Twitter</a></li>
<li class="grusp_vimeo"><a href="http://vimeo.com/grusp" title="">Vimeo</a></li>
</ul>
</div>
</div>
<div class="separator"></div>
</section>
<a name="info"></a>
<section class="alpha_16">
<div class="container group">
<div class="column_6 centered">
<h3 class="center">La conferenza</h3>
<p><strong>Symfony 2 è uno dei framework PHP piú apprezzati sul mercato.</strong></p>
<p>Symfony 2 e' diventato il riferimento per quanto riguarda lo sviluppo ad alto livello con PHP e molti software open source, come Drupal, eZ Publish e phpBB hanno gia' iniziato ad includerlo al loro interno. Il Symfony|Day e' l'evento di riferimento su Symfony che introduce le best practice e ne mostra case study ad alto livello.
</p>
</div>
<div class="clear"></div>
</div>
<div class="separator"></div>
</section>
<a name="programma"></a>
<section class="alpha_24">
<div class="container group">
<h3 class="center">Il programma</h3>
<table id="schedule" border="0" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th>
Time
</th>
<th>
Track 1
</th>
</tr>
</thead>
<tr class="common_event">
<td class="time">09:00 – 09:30</td>
<td><h4><a href="#" title="">Check-in</a></h4></td>
</tr>
<tr class="common_event">
<td class="time">09:35 – 10:00</td>
<td>
<h4><a href="#" title="">Intro</a></h4>
<a href="http://twitter.com/cirpo" title="cirpo">Alessandro Cinelli - @cirpo</a><br />
<a href="http://www.slideshare.net/cirpo/symfonyday" title="" class="slides">Slide</a>
</td>
</tr>
<tr class="common_event">
<td class="time">10:05 – 10:30</td>
<td>
<h4>
<a href="http://www.slideshare.net/garak/migrare-da-symfony-1-a-symfony2-14611892" title="">Migrare da symfony 1 a Symfony2</a>
</h4>
<a href="http://twitter.com/garakkio" title="garakkio">Massimiliano Arione - @garakkio</a><br />
<a href="http://www.slideshare.net/garak/migrare-da-symfony-1-a-symfony2-14611892" title="" class="slides">Slide</a>
</td>
</tr>
<tr class="common_event">
<td class="time">10:35 – 11:05</td>
<td>
<h4>
<a href="http://www.slideshare.net/andreadelfino/backend-with-sonataadminbundle-and-symfony2-of-course" title="">SonataAdmin Bundle</a>
</h4>
<a href="http://twitter.com/ottimo" title="ottimo">Andrea Delfino - @ottimo</a><br />
<a href="http://www.slideshare.net/andreadelfino/backend-with-sonataadminbundle-and-symfony2-of-course" title="" class="slides">Slide</a>
</td>
</tr>
<tr class="break">
<td class="time">11:05 – 11:25</td>
<td>
<h4><strong>Coffee Break</strong></h4>
</td>
</tr>
<tr class="common_event">
<td class="time">11:25 – 11:55</td>
<td>
<h4>
<a href="#" title="">Symfony CMF</a>
</h4>
<a href="http://twitter.com/jacoporomei" title="jacoporomei">Jacopo Romei - @jacoporomei</a><br />
</td>
</tr>
<tr class="common_event">
<td class="time">12:00 – 12:30</td>
<td>
<h4>
<a href="http://www.slideshare.net/euxpom/phpunit-elevato-alla-symfony2" title="">PHPUnit elevato alla Symfony2</a>
</h4>
<a href="http://twitter.com/euxpom" title="euxpom">Eugenio Pombi - @euxpom</a><br />
<a href="http://www.slideshare.net/euxpom/phpunit-elevato-alla-symfony2" title="" class="slides">Slide</a>
</td>
</tr>
<tr class="common_event">
<td class="time">12:35 – 13:00</td>
<td>
<h4>
<a href="http://www.skuola.net" title="">Symfony va a Skuola</a>
</h4>
<a href="http://twitter.com/ifabio" title="ifabio">Fabio Giannese - @ifabio</a><br />
</td>
</tr>
<tr class="break lunch">
<td class="time">13:00 –14:00</td>
<td><h4><strong>Lunch Break</strong></h4></td>
</tr>
<tr class="common_event">
<td class="time">14:00 – 14:30</td>
<td>
<h4>
<a href="http://www.slideshare.net/dlondero/symfony2-sql-e-nosql-assieme-si-pu" title="">Symfony2, SQL e NoSQL. Assieme. Si può.</a>
</h4>
<a href="http://twitter.com/dlondero" title="dlondero">Daniel Londero - @dlondero</a><br />
<a href="http://www.slideshare.net/dlondero/symfony2-sql-e-nosql-assieme-si-pu" title="" class="slides">Slide</a>
</td>
</tr>
<tr class="common_event">
<td class="time">14:35 – 15:05</td>
<td>
<h4>
<a href="http://www.slideshare.net/kea42/symfony2-security-layer" title="">Symfony2 Security Layer</a>
</h4>
<a href="http://twitter.com/k3a" title="k3a">Manuel Baldassarri - @k3a</a><br />
<a href="http://www.slideshare.net/kea42/symfony2-security-layer" title="" class="slides">Slide</a>
</td>
</tr>
<tr class="common_event">
<td class="time">15:10 – 15:40</td>
<td>
<h4>
<a href="#" title="">Symfony2 incontra Drupal 8</a>
</h4>
<a href="http://twitter.com/stefanomainardi" title="stefanomainardi">Stefano Mainardi - @stefanomainardi</a><br />
</td>
</tr>
<tr class="break">
<td class="time">15:40 – 16:00</td>
<td>
<h4><strong>Coffee Break</strong></h4>
</td>
</tr>
<tr class="common_event">
<td class="time">16:00 – 16:30</td>
<td>
<h4>
<a href="#" title="">Symfony2: DIC e EventDispatcher</a>
</h4>
<a href="http://twitter.com/filippodesantis" title="filippodesantis">Filippo De Santis - @filippodesantis</a><br />
</td>
</tr>
<tr class="common_event">
<td class="time">16:30 – 17:05</td>
<td>
<h4>
<a href="http://www.slideshare.net/_leopro_/symfony2-creare-bundle-e-valore-per-il-cliente" title="">Symfony2, creare bundle e valore per il cliente</a>
</h4>
<a href="http://twitter.com/_leopro_" title="filippodesantis">Leonardo Proietti - @_leopro_</a><br />
<a href="http://www.slideshare.net/_leopro_/symfony2-creare-bundle-e-valore-per-il-cliente" title="" class="slides">Slide</a>
</td>
</tr>
<tr class="common_event">
<td class="time">17:10 – 17:40</td>
<td>
<h4>
<a href="http://www.slideshare.net/miziomon/use-symfony2-components-inside-wordpress" title="">Come usare i componenti di Symfony2 dentro WordPress e vivere felici</a>
</h4>
<a href="http://twitter.com/miziomon" title="miziomon">Maurizio Pelizzone - @miziomon</a><br />
<a href="http://www.slideshare.net/miziomon/use-symfony2-components-inside-wordpress" title="" class="slides">Slide</a>
</td>
</tr>
<tr class="common_event">
<td class="time">17:45 – 18:15</td>
<td>
<h4>
<a href="http://www.slideshare.net/liuggio/rationally-boost-your-symfony2-application-with-caching-tips-and-monitoring" title="">Spingere al massimo un'applicazione Symfony2 con trucchi, caching e monitoring</a>
</h4>
<a href="http://twitter.com/liuggio" title="filippodesantis">Giulio De Donato - @liuggio</a><br />
<a href="http://www.slideshare.net/liuggio/rationally-boost-your-symfony2-application-with-caching-tips-and-monitoring" title="" class="slides">Slide</a>
</td>
</tr>
<tr class="common_event">
<td class="time">18:15 – 18:30</td>
<td><h4><a href="#" title="">Chiusura</a></h4></td>
</tr>
</table>
<div class="separator cnt_separator"></div>
</div>
<a name="registrati"></a>
<div class="container group center">
<h3>Registrati ora!</h3>
<div class="column_10 centered">
<iframe src="http://www.eventbrite.com/tickets-external?eid=3656590962&ref=etckt" frameborder="0" height="274" width="100%" vspace="0" hspace="0" marginheight="5" marginwidth="5" scrolling="auto" allowtransparency="true"></iframe>
</div>
</div>
<div class="separator"></div>
</section>
<a name="location"></a>
<section class="alpha_32">
<div class="container group">
<h3 class="column_12">Location</h3>
<div class="column_6 map">
<div id="map_canvas"></div>
</div>
<div class="column_6 legend right">
<dl>
<dt class="event_location"><span><strong>Event location</strong></span></dt>
<dd class="event_location">
<strong>c/o <a href="http://www.i3p.it/">I3P</a></strong>
Via Pier Carlo Boggio 59<br />
10138 Torino, Italy
</dd>
<dt class="eat"><span><strong>Dove mangiare</strong></span></dt>
<dd>Ristoranti</dd>
<dt class="get_to"><span><strong>Come arrivare</strong></span></dt>
<dd>Trasporti</dd>
<dt class="stay"><span><strong>Dove dormire</strong></span></dt>
<dd>Alberghi</dd>
</dl>
</div>
<div class="clear"></div>
<div class="column_3">
<h5>In auto</h5>
<p>Dall'autostrada, seguire le indicazioni per il centro.</p>
<p>In città, seguire le indicazioni per il Politecnico o la stazione Porta Susa o il Tribunale (palazzo di giustizia).</p>
<p><strong>Dal Politecnico</strong>: avendo l'entrata principale alla propria destra, proseguire su corso Duca degli Abruzzi, svoltare a destra al primo incrocio con semaforo, su corso Peschiera. Svoltare poi a destra al secondo semaforo, per corso Ferrucci e infine prendere la prima strada a destra.</p>
<p><strong>Da Porta Susa</strong>: avendo l'entrata principale a destra, proseguire fino alla fine di corso Bolzano. Svoltare a destra su corso Vittorio Emanuele II e proseguire per 350m verso il Tribunale.</p>
<p><strong>Dal Tribunale</strong>: di fronte l'entrata, in corso Vittorio Emanuele II, svoltare su via Borsellino, verso il Museo del Carcere, e proseguire sulla stessa strada.</p>
</div>
<div class="column_3">
<h5>In treno</h5>
<p>
<strong>Dalla stazione di Porta Susa sotterranea (Frecciarossa)</strong>: uscire verso corso Inghilterra. Proseguire verso corso Vittorio Emanuele II. Arrivati di fronte al tribunale, girare a sinistra, su via Borsellino. Proseguire lungo la strada.
</p>
<p><strong>Dalla stazione di Porta Susa (piazza XVIII Dicembre)</strong>: Bus 56, direzione Tirreno, 10 fermante. Proseguire in direzione dell'autobus fino all'incrocio e girare a sinistra, su via Fratelli Bandiera. Alla fine della strada, girare a destra.
</p>
<p><strong>Dalla stazione di Porta Nuova</strong>:
<ul>
<li>
<strong>Bus 68</strong>, direzione via Frejus, 5 fermate. Di fronte al Tribunale, girare a sinistra e proseguire su via Borsellino.
</li>
<li>
<strong>Tram 9</strong>, direzione Stampalia, 5 fermate. Di fronte al Tribunale, girare a sinistra e proseguire su via Borsellino.
</li>
<li>
<strong>Bus 33/</strong>, direzioni Partigiani, 8 fermate. Su corso Ferucci andare a sinistra, poi la prima strada a destra.
</li>
</ul>
</p>
</div>
<div class="column_3">
<h5>In aereo</h5>
<p>
<a href="http://www.aeroportoditorino.it/" title="Aeroporto di Torino">Aereporto di Torino</a>.
Di fronte l'uscita degli arrivi, prendere l'autobus <a href="http://www.sadem.it/upload/orari/estivi/000268.pdf" target="_blank" >Sadem per Torino</a>.
L'autobus ferma a Porta Susa (piazza XVIII Dicembre) e Porta Nuova. Seguire le indicazioni "In treno".
</p>
</div>
<div class="column_3">
<h5>Pernottamento</h5>
<p>
È possibile usufruire della tariffa speciale di 59€ a notte presso l'<a href="http://www.sanpaolo-to.com/" target="_blank">Hotel Residence Sanpaolo</a>, facendo riferimento alla convenzione "<strong>symfonyday</strong>".<br />
L'albergo è a <a href="http://goo.gl/maps/4PjXZ" target="_blank">poche centinaia di metri dall'I3P</a>, offre WiFi gratuito, colazione a buffet e parcheggio.<br /><br />
Contatti:<br />
<a href="http://www.sanpaolo-to.com/" target="_blank">Hotel Residence Sanpaolo</a><br />Via Spalato 7, 10141 Torino<br />Tel +39 011.3853953<br />Fax +39 011.3352880<br /><a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
</div>
<div class="clear"></div>
</div>
<div class="separator"></div>
</section>
<a name="sponsorizza"></a>
<section class="sponsors">
<div class="container group">
<h3 class="center">Sponsorizza</h3>
<div class="column_12">
<p>Un grande evento è fatto anche di grandi sponsor, perchè quindi non sfruttare l'occasione e contribuire alla conferenza?<br/>
<a href="mailto:[email protected]">Contattaci</a> per chiederci come sponsorizzarci!</p>
</div>
<div class="clear"></div>
<div class="column_4">
<h4 class="gold">Gold</h4>
<span class="euro btn">€ 1000</span>
<ul class="benefit">
<li>Banner sul sito</li>
<li>Pubblicità nelle comunicazioni pre-evento</li>
<li>Autorizzazione a portare pubblicità e gadget (ie. volantini, adesivi, magliette)</li>
<li>Presenza logo sul programma stampato</li>
<li>Potete posizionare il vostro flyer nella sala</li>
</ul>
</div>
<div class="column_4">
<h4 class="silver">Silver</h4>
<span class="euro btn">€ 500</span>
<ul class="benefit">
<li>Banner sul sito</li>
<li>Pubblicità nelle comunicazioni pre-evento</li>
<li>Autorizzazione a portare pubblicità e gadget (ie. volantini, adesivi, magliette)</li>
<li>Presenza logo sul programma stampato</li>
</ul>
</div>
<div class="column_4">
<h4 class="bronze">Bronze</h4>
<span class="euro btn">€ 300</span>
<ul class="benefit">
<li>Banner sul sito</li>
<li>Autorizzazione a portare pubblicità e gadget (ie. volantini, adesivi, magliette)</li>
</ul>
</div>
<div class="clear"></div>
</div>
<div class="container group">
<h3>Gli sponsor</h3>
<div class="gold_sponsors">
<h4 class="gold">Gold</h4>
<a class="banner" href="http://www.ideato.it" title="ideato">
<img src="img/sposnor_ideato.jpg" alt="sponsor ideato" />
</a>
<a class="banner" href="http://www.skuola.net" title="skuola.net">
<img src="img/sponsor_skuola.png" alt="sponsor skuola" />
</a>
<div class="clear"></div>
</div>
<div class="silver_sponsors">
<h4 class="silver">Silver</h4>
<a class="banner" href="http://adespresso.com" title="adespresso">
<img src="img/sponsor_adespresso.png" alt="sponsor adespresso" />
</a>
<a class="banner" href="http://www.wellnet.it" title="wellnet">
<img src="img/sponsor_wellnet.jpg" alt="sponsor wellnet" />
</a>
<a class="banner" href="http://www.hivejobs.com" title="hivejobs">
<img src="img/sponsor_hivejobs.jpg" alt="sponsor hivejobs" />
</a>
<div class="clear"></div>
</div>
<div class="bronze_sponsors">
<h4 class="bronze">Bronze</h4>
<a class="banner" href="http://www.gnvpartners.com" title="gnvpartners">
<img src="img/gnvpartners.png" alt="gnvpartners" width="300" height="120" />
</a>
<a class="banner" href="http://www.servergrove.com" title="servergrove">
<img src="img/sponsor_servergrove.jpg" alt="servergrove" width="300" height="120" />
</a>
<a class="banner" href="http://www.phpbestpractices.it" title="php best practices">
<img src="img/php_best_practices.png" alt="php best practices" width="300" height="120" />
</a>
<div class="clear"></div>
</div>
</div>
</section>
<footer id="site_footer">
<div class="container group">
<div class="ftr_info">
© 2012 Grusp. Tutti i diritti riservati.
<ul>
<li><a href="http://www.grusp.org" title="">Cos'è il Grusp?</a></li>
<!--li><a href="#" title="">Privacy policy</a></li-->
<li><a href="mailto:[email protected]" title="">Contattaci</a></li>
</ul>
</div>
<a id="back_top" href="#top" title="">Torna su</a>
</div>
</footer>
</div> <!-- Closes #wrapper -->
</div><!-- Closes #site_wrapper -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="js/jquery.fittext.js"></script>
<script type="text/javascript">
$("#fittext1").fitText(.8);
$("#fittext2").fitText(1.6);
//$("#fittext3").fitText(1.1, { minFontSize: 50, maxFontSize: '75px' });
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-3559597-10']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>