-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-societa.php
128 lines (124 loc) · 5.03 KB
/
page-societa.php
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
<?php get_header(); ?>
<section class="container">
<div class="image-overlay w-full h-40 sm:h-64 md:h-80 lg:h-96">
<?php echo wp_get_attachment_image(get_theme_mod('carousel')['image_1'], 'ttferrara_large', false, array(
'class' => 'object-cover w-full'
)); ?>
<div class="dark-overlay"></div>
</div>
</div>
<section class="container">
<h2>Organigramma</h2>
<div class="grid grid-cols-1 lg:grid-cols-2 lg:grid-rows-2 md:gap-x-8 xl:gap-x-32 gap-y-8 text-center mt-12">
<div>
<h3 class="mb-4">Consiglio Direttivo</h3>
<div class="flex justify-between text-sm sm:text-lg">
<p class="font-medium">Presidente:</p>
<p>Enrico Mugellini</p>
</div>
<div class="flex justify-between text-sm sm:text-lg">
<p class="font-medium">Vice Presidente:</p>
<p>Simone Gallerani</p>
</div>
<div class="flex justify-between text-sm sm:text-lg">
<p class="font-medium">Segretario:</p>
<p>Luca Antonucci</p>
</div>
<div class="flex justify-between text-sm sm:text-lg">
<p class="font-medium">Consigliere:</p>
<p>Sergio Curarati</p>
</div>
<div class="flex justify-between text-sm sm:text-lg">
<p class="font-medium">Consigliere:</p>
<p>Guido Caravita</p>
</div>
<div class="flex justify-between text-sm sm:text-lg">
<p class="font-medium">Presidente Onorario:</p>
<p>Giorgio Quartaroli</p>
</div>
</div>
<div>
<h3 class="mb-4">Responsabili Settori Gestionali</h3>
<div class="flex justify-between text-sm sm:text-lg">
<p class="font-medium">Contabilità:</p>
<p>Enrico Mugellini</p>
</div>
<div class="flex justify-between text-sm sm:text-lg">
<p class="font-medium">Enti Locali e Manutenzione:</p>
<p>Paolo Bianchetti</p>
</div>
<div class="flex justify-between text-sm sm:text-lg">
<p class="font-medium">Rapporti con la stampa:</p>
<p>Luca Antonucci</p>
</div>
<div class="flex justify-between text-sm sm:text-lg">
<p class="font-medium">Sito Internet e Social Media:</p>
<p>Marcello Davi</p>
</div>
</div>
<div>
<h3 class="mb-4">Tecnici</h3>
<div class="flex justify-between text-sm sm:text-lg">
<p class="font-medium">Capo Tecnico:</p>
<p>Maurizio Buzzone</p>
</div>
<div class="flex justify-between text-sm sm:text-lg">
<p class="font-medium">Vice Tecnico Regionale:</p>
<p>Alessandro Andreoli</p>
</div>
<div class="flex justify-between text-sm sm:text-lg">
<p class="font-medium">Tecnico:</p>
<p>Paolo Bianchetti</p>
</div>
<div class="flex justify-between text-sm sm:text-lg">
<p class="font-medium">Tecnico:</p>
<p>Luca Antonucci</p>
</div>
<div class="flex justify-between text-sm sm:text-lg">
<p class="font-medium">Tecnico:</p>
<p>Enrico Mugellini</p>
</div>
<div class="flex justify-between text-sm sm:text-lg">
<p class="font-medium">Tecnico:</p>
<p>Sergio Curarati</p>
</div>
<div class="flex justify-between text-sm sm:text-lg">
<p class="font-medium">Tecnico:</p>
<p>Guido Caravita</p>
</div>
</div>
<div>
<h3 class="mb-4">Atleti abilitati all'uso del defibrillatore</h3>
<div class="flex justify-between text-sm sm:text-lg">
<p>Claudio Sfrisi</p>
<p>Alessandro Andreoli</p>
</div>
<div class="flex justify-between text-sm sm:text-lg">
<p>Guido Caravita</p>
<p>Massimo Fratti</p>
</div>
<div class="flex justify-between text-sm sm:text-lg">
<p>Enrico Mugellini</p>
<p>Simone Gallerani</p>
</div>
<div class="flex justify-between text-sm sm:text-lg">
<p>Sergio Curarati</p>
<p>Luca Antonucci</p>
</div>
<div class="flex justify-between text-sm sm:text-lg">
<p>Maurizio Buzzone</p>
<p>Paolo Bianchetti</p>
</div>
<div class="flex justify-between text-sm sm:text-lg">
<p>Claudio Polloni</p>
<p>Giulio Sani</p>
</div>
</div>
</div>
</section>
<section class="container">
<h2>Storia</h2>
<?php echo get_theme_mod('storia_societa_setting'); ?>
</section>
<?php
get_footer();