1
0
Fork 0
forked from are0h/tapes

Compare commits

..

No commits in common. "alt-text" and "main" have entirely different histories.

View file

@ -7,20 +7,20 @@ $covers = $tapes->getList(true);
include "parts/top.php"; include "parts/top.php";
?> ?>
<header> <header>
<img alt="The Vicious Tapes" class="the-logo" src="assets/images/global/logo-primary.png" /> <img class="the-logo" src="assets/images/global/logo-primary.png" />
<div class="audio-progress"></div> <div class="audio-progress"></div>
</header> </header>
<div id="tape-controls" class="control-closed"> <div id="tape-controls" class="control-closed">
<img alt="Previous" id="control-back" class="tape-control-button" src='assets/images/global/btn_back.png' /> <img id="control-back" class="tape-control-button" src='assets/images/global/btn_back.png' />
<label class="control-text">NOTHING PLAYING</label> <label class="control-text">NOTHING PLAYING</label>
<img alt="Next" id="control-next" class="tape-control-button" src='assets/images/global/btn_forward.png' /> <img id="control-next" class="tape-control-button" src='assets/images/global/btn_forward.png' />
</div> </div>
<main> <main>
<article class="tape-select front"> <article class="tape-select front">
<?php foreach ($covers as $cover) { <?php foreach ($covers as $cover) {
$title = $cover["title"]; ?> $title = $cover["title"]; ?>
<img alt="<?php echo $title ?>" id="<?php echo urlencode($title); ?>" class="covers" src=" <img id="<?php echo urlencode($title); ?>" class="covers" src="
<?php echo "/assets/audio/tapes/" . $title . "/cover.jpg"; ?>" /> <?php echo "/assets/audio/tapes/" . $title . "/cover.jpg"; ?>" />
<?php <?php
@ -29,7 +29,7 @@ include "parts/top.php";
</article> </article>
<article class="tape-tracklist back-right"> <article class="tape-tracklist back-right">
<img alt="" id="tape-cover" src='' /> <img id="tape-cover" src='' />
<h1 id="tape-title"></h1> <h1 id="tape-title"></h1>
<section id="playlist"></section> <section id="playlist"></section>