2024-06-04 17:10:14 +02:00
|
|
|
<h5>Artists List</h5>
|
2024-06-03 16:51:37 +02:00
|
|
|
<section class="list">
|
2024-06-04 17:10:14 +02:00
|
|
|
|
2024-06-03 16:51:37 +02:00
|
|
|
<?php
|
|
|
|
foreach($artists as $artist){
|
|
|
|
echo "<div><article>";
|
|
|
|
echo "<header class='short-text'>";
|
2024-06-04 17:17:44 +02:00
|
|
|
echo anchor("artistes/view/{$artistes->artistId}","{$artist->artistName}");
|
2024-06-04 17:10:14 +02:00
|
|
|
echo "</header>";
|
|
|
|
echo "</article></div>";
|
2024-06-03 16:51:37 +02:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
</section>
|