2024-05-27 13:08:39 +02:00
|
|
|
<h5>Song of the album</h5>
|
|
|
|
<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-05-28 11:59:36 +02:00
|
|
|
echo /*anchor("albums/view/{$song->id}",*/"{$song->name}"/*)*/;
|
2024-05-27 14:04:46 +02:00
|
|
|
echo "<br>";
|
|
|
|
echo "</header>";
|
|
|
|
echo "</article></div>";
|
|
|
|
}
|
2024-05-27 13:08:39 +02:00
|
|
|
?>
|
2024-05-27 14:04:46 +02:00
|
|
|
</section>
|