2024-05-28 11:34:30 +02:00
|
|
|
|
2024-06-04 15:00:24 +02:00
|
|
|
<section class="container">
|
|
|
|
<?php
|
|
|
|
foreach ($AlbumsOfArtists as $AlbumsOfArtist) {
|
|
|
|
echo "<div class='album'><article>";
|
|
|
|
echo "<header class='album-title'>";
|
|
|
|
echo anchor("albums/view/{$AlbumsOfArtist->id}", "{$AlbumsOfArtist->name}");
|
|
|
|
echo "<br>";
|
|
|
|
echo "</header>";
|
2024-06-05 11:14:54 +02:00
|
|
|
|
2024-06-04 15:00:24 +02:00
|
|
|
echo '<img src="data:image/jpeg;base64,' . base64_encode($AlbumsOfArtist->jpeg) . '" alt="' . $AlbumsOfArtist->name . '" />';
|
|
|
|
echo "<footer class='short-text'>$AlbumsOfArtist->year</footer>";
|
|
|
|
echo "</article></div>";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</section>
|