Files
Ecurie_Web/vue/actualite/index.php
ccunatbrule 23a8352a92 MAJ V1.1
MAJ contenue et vérification HTML et CSS en cours
2021-10-29 18:35:40 +02:00

23 lines
898 B
PHP

<div class="container-fluid">
<section id="content" class="page-content">
<div class="container">
<br><h2 class="text-center">Dernières nouvelles</h2><hr>
<ul class="list-unstyled">
<?php foreach($event1 as $event){ ?>
<li class="media m-3 border border-secondary rounded p-2 bg-white">
<div class="numbox img-indent3">
<span><?php setlocale (LC_TIME, 'fr_FR.utf-8','fra');echo strftime("%b", strtotime($event['dateevent'])); ?></span>
<strong><?php echo strftime("%#d", strtotime($event['dateevent'])); ?></strong>
</div>
<div class="media-body">
<h4 class="card-title"><?php echo $event['nomevent']; ?></h4>
<?php echo $event['descriptionevent']; ?><br><br>
<!--<p class="blockquote-footer">Posté par Admin <span>46 Commentaire(s)</span></p>-->
</div>
</li>
<?php } ?>
</ul>
</div>
</section>
</div>