Changes.
This commit is contained in:
parent
4a5e5d224a
commit
70c8a87e15
25 changed files with 508 additions and 187 deletions
|
@ -31,7 +31,7 @@ require_once 'includes/header.php';
|
|||
<nav aria-label="breadcrumb" class="bg-body-tertiary rounded-3 p-3 mb-4">
|
||||
<ol class="breadcrumb mb-0">
|
||||
<li class="breadcrumb-item"><a href="/"><?php echo $locale['home']; ?></a></li>
|
||||
<li class="breadcrumb-item"><a href="/genres.php"><?php echo $locale['genres']; ?></a></li>
|
||||
<li class="breadcrumb-item"><a href="/genres"><?php echo $locale['genres']; ?></a></li>
|
||||
<li class="breadcrumb-item active"
|
||||
aria-current="page"><?php
|
||||
if ($genre && $genre->get_name() != "") {
|
||||
|
@ -101,15 +101,15 @@ require_once 'includes/header.php';
|
|||
$output = new Mix($mix, $db);
|
||||
echo '<div class="row">';
|
||||
echo '<p class="mb-0">';
|
||||
echo '<a href="/mix.php?mix=' . $output->get_slug() . '">';
|
||||
echo '<a href="/mix/' . $output->get_slug() . '">';
|
||||
echo $output->get_name();
|
||||
echo '</a>';
|
||||
echo ' ‐ ';
|
||||
$djs = $output->get_djs();
|
||||
$djCount = 0;
|
||||
foreach ($djs as $dj) {
|
||||
echo '<a href="/dj.php?dj=' . $dj->get_slug() . '">';
|
||||
echo $dj->get_name();
|
||||
echo '<a href="/dj/' . $dj->getSlug() . '">';
|
||||
echo $dj->getName();
|
||||
echo '</a>';
|
||||
$djCount++;
|
||||
if ($djCount < count($djs)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue