2024-06-05 11:14:54 +02:00
|
|
|
|
2024-05-27 13:08:39 +02:00
|
|
|
<section class="list">
|
|
|
|
<?php
|
2024-05-27 14:04:46 +02:00
|
|
|
foreach($songs as $song){
|
|
|
|
echo "<div><article>";
|
|
|
|
echo "<header class='short-text'>";
|
2024-06-05 11:14:54 +02:00
|
|
|
echo "{$song->name}";
|
|
|
|
echo " <button class='add-to-playlist' data-song='{$song->name}'>+</button>";
|
2024-05-27 14:04:46 +02:00
|
|
|
echo "<br>";
|
|
|
|
echo "</header>";
|
|
|
|
echo "</article></div>";
|
|
|
|
}
|
2024-05-27 13:08:39 +02:00
|
|
|
?>
|
2024-06-05 11:14:54 +02:00
|
|
|
</section>
|