Changes.
This commit is contained in:
parent
4a5e5d224a
commit
70c8a87e15
25 changed files with 508 additions and 187 deletions
|
@ -17,9 +17,10 @@ if (isset($_GET['mixshow']) && $_GET['mixshow'] != "") {
|
|||
if ($mixshow->get_name() != "") {
|
||||
|
||||
$mixshowFound = true;
|
||||
$title = $mixshow->get_name();
|
||||
}
|
||||
}
|
||||
$title = $mixshow->get_name();
|
||||
|
||||
require_once 'includes/header.php';
|
||||
?>
|
||||
<section>
|
||||
|
@ -29,7 +30,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="/mixshows.php"><?php echo $locale['mixshows']; ?></a></li>
|
||||
<li class="breadcrumb-item"><a href="/mixshows"><?php echo $locale['mixshows']; ?></a></li>
|
||||
<li class="breadcrumb-item active"
|
||||
aria-current="page"><?php
|
||||
if ($mixshow && $mixshow->get_name() != "") {
|
||||
|
@ -108,7 +109,7 @@ require_once 'includes/header.php';
|
|||
// Column for mix name and link
|
||||
echo '<div class="col-md">';
|
||||
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 '</p>';
|
||||
|
@ -118,7 +119,7 @@ require_once 'includes/header.php';
|
|||
echo '<div class="col-md ">';
|
||||
echo '<p class="mb-0">';
|
||||
foreach ($genrelist as $slug => $name) {
|
||||
echo ' <a href="/genre.php?genre=' . $slug . '">';
|
||||
echo ' <a href="/genre/' . $slug . '">';
|
||||
// ellipse the genre name if it's too long
|
||||
echo '<span class="">' . $name . '</span>';
|
||||
echo '</a>';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue