You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.9 KiB
49 lines
1.9 KiB
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="section-title">Contatti</div>
|
|
</div>
|
|
|
|
<div class="col-12 col-sm-12 col-md-7 contacts">
|
|
<i class="fa fa-map-marker"></i> <b>Sede:</b> Via Settimio Mobilio, 17 - SALERNO<br>
|
|
<i class="fa fa-phone"></i> <b>Telefono:</b> 089.405080 - 089.795900<br>
|
|
<i class="fa fa-fax"></i> <b>Fax:</b> 089.798628<br>
|
|
<i class="fa fa-envelope"></i> <b>E-Mail:</b> info@ordinefarmacistisalerno.it<br>
|
|
<i class="fa fa-envelope"></i> <b>E-Mail certificata:</b> ordinefarmacistisa@pec.fofi.it <br>
|
|
|
|
<div class="d-block d-sm-none hours">
|
|
<?php @include 'blocks/hours.php';?>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-12 col-sm-12 col-md-5 mb-2">
|
|
<div id="map">
|
|
<iframe width="100%" height="100%" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.it/maps?f=q&source=s_q&hl=it&geocode=&q=ordine+farmacisti+salerno&sll=41.442726,12.392578&sspn=17.04957,43.286133&ie=UTF8&hq=ordine+farmacisti&hnear=Salerno+SA&ll=40.685389,14.781933&spn=0.004012,0.014656&z=14&iwloc=A&cid=4099829483191197382&output=embed"></iframe>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row last-news">
|
|
|
|
<div class="col-12">
|
|
<div class="section-title">Ultime notizie</div>
|
|
|
|
<?php
|
|
$q = mysqli_query($conn, "SELECT * FROM news ORDER BY date DESC LIMIT 0,5");
|
|
while($r = mysqli_fetch_array($q)){
|
|
echo "<p class=\"item\"><a href=\"$BASE_URL/news/0/".$r['id']."/".conv_url($r['title'])."\"><span class=\"date\">".conv_date($r['date'])." </span> - ".$r['title']."</a></p>";
|
|
}
|
|
?>
|
|
|
|
</div>
|
|
|
|
<div class="col-12 my-2">
|
|
<p class="text-right"><a class="font-12" href="<?php echo $BASE_URL;?>/news">Vai a tutte le news <i class="fa fa-angle-right"></i></a></p>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php
|
|
@include 'spot.php';
|
|
?>
|