mirror of
https://grond.iut-fbleau.fr/stiti/SAE_2.02
synced 2024-11-12 22:01:41 +01:00
35 lines
1.2 KiB
PHP
35 lines
1.2 KiB
PHP
<head>
|
|
<link rel="stylesheet" href="assets/css/style.css">
|
|
<link rel="icon" type="image/x-icon" href="assets/img/Logo_ONZEUR.png">
|
|
<title>Page d'accueil</title>
|
|
</head>
|
|
|
|
<h1 class="title">Listes des albums</h1>
|
|
<section class="list">
|
|
<?php
|
|
foreach($albums as $album){
|
|
echo "<div><article>";
|
|
echo "<header class='short-text'>";
|
|
echo anchor("albums/view/{$album->id}","{$album->name}");
|
|
echo "</header>";
|
|
echo '<img src="data:image/jpeg;base64,'.base64_encode($album->jpeg).'" />';
|
|
echo "<footer class='short-text'>{$album->year} - {$album->artistName}</footer>
|
|
</article></div>";
|
|
}
|
|
?>
|
|
</section>
|
|
|
|
<div class="pagination">
|
|
<?php if ($current_page > 1): ?>
|
|
<a href="<?php echo base_url('albums/index/'.($current_page-1)); ?>">Previous</a>
|
|
<?php endif; ?>
|
|
|
|
<?php for ($i = 1; $i <= $total_pages; $i++): ?>
|
|
<a href="<?php echo base_url('albums/index/'.$i); ?>" <?php echo ($i == $current_page) ? 'class="active"' : ''; ?>><?php echo $i; ?></a>
|
|
<?php endfor; ?>
|
|
|
|
<?php if ($current_page < $total_pages): ?>
|
|
<a href="<?php echo base_url('albums/index/'.($current_page+1)); ?>">Suivant</a>
|
|
<?php endif; ?>
|
|
</div>
|