Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.volley92.asso.fr
/
htdocs
/
pages
/
/srv/data/web/vhosts/www.volley92.asso.fr/htdocs/pages/accueil.php
<?php //start_block('title','keywords','description') start_block('','',''); ?> <?php // $temp = strrchr($slug,'-'); // $temp = explode('-', $temp); // $id = $temp[1]; $stmt=$db_client->prepare("SELECT * FROM news WHERE state = 1 ORDER BY created_at DESC"); // on prépare notre requête $stmt->execute(); $rown=$stmt->fetchAll(); $stmt=$db_client->prepare("SELECT * FROM home"); // on prépare notre requête $stmt->execute(); $rowh=$stmt->fetchAll(); ?> <section class="one accueil"> <?php include('modules/slider.php');?> <?php if(!empty($rown)): ?> <article class="block-padding accueil-news"> <h2 class="text-center">Les dernières actualités</h2> <div class="divider"></div> <div class="container"> <div class="row"> <?php include('modules/news-list.php');?> </div> </div> </article> <?php endif; ?> <article class="py-5"> <div class="container"> <?php foreach($rowh as $row):?> <div class="col-md-12 p-0"> <?= $row->content ?> </div> <?php endforeach;?> </div> </article> <article class="accueil-news py-5"> <h2 class="text-center">Nos partenaires</h2> <div class="divider"></div> <br><br> <div class="container"> <div class="row"> <div class="col-lg-8 mx-auto text-center"> <?php include('modules/partners.php');?> </div> </div> </div> </article> </section> <?php end_block(); ?>