2024-05-22 12:04:00 +02:00
|
|
|
<h5>Artiste list</h5>
|
|
|
|
|
<section class="list">
|
|
|
|
|
<?php
|
|
|
|
|
foreach($artistes as $artistes){
|
|
|
|
|
echo "<div><article>";
|
|
|
|
|
echo "<header class='short-text'>";
|
2024-06-05 10:32:50 +02:00
|
|
|
echo anchor("albums/viewAlbum/{$artistes->id}","{$artistes->name}");
|
2024-05-22 12:04:00 +02:00
|
|
|
echo "</header>";
|
|
|
|
|
echo "</article></div>";
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</section>
|