nextcloud/apps/media/templates/music.php

51 lines
2.1 KiB
PHP
Raw Normal View History

2011-08-08 23:40:39 +04:00
<div id="controls">
<ul class="jp-controls">
<li><a href="#" class="jp-play action"><img class="svg" alt="<?php echo $l->t('Play');?>" src="<?php echo image_path('core', 'actions/play-big.svg'); ?>" /></a></li>
<li><a href="#" class="jp-pause action"><img class="svg" alt="<?php echo $l->t('Pause');?>" src="<?php echo image_path('core', 'actions/pause-big.svg'); ?>" /></a></li>
<li><a href="#" class="jp-previous action"><img class="svg" alt="<?php echo $l->t('Previous');?>" src="<?php echo image_path('core', 'actions/play-previous.svg'); ?>" /></a></li>
<li><a href="#" class="jp-next action"><img class="svg" alt="<?php echo $l->t('Next');?>" src="<?php echo image_path('core', 'actions/play-next.svg'); ?>" /></a></li>
<li><a href="#" class="jp-mute action"><img class="svg" alt="<?php echo $l->t('Mute');?>" src="<?php echo image_path('core', 'actions/sound.svg'); ?>" /></a></li>
<li><a href="#" class="jp-unmute action"><img class="svg" alt="<?php echo $l->t('Unmute');?>" src="<?php echo image_path('core', 'actions/sound-off.svg'); ?>" /></a></li>
2011-08-08 23:40:39 +04:00
</ul>
<div class="jp-progress">
<div class="jp-seek-bar">
<div class="jp-play-bar"></div>
</div>
</div>
2011-08-13 18:34:40 +04:00
<div class="jp-current-time"></div>
<div class="jp-duration"></div>
2011-08-08 23:40:39 +04:00
<div class="jp-volume-bar">
<div class="jp-volume-bar-value"></div>
</div>
2011-08-13 18:34:40 +04:00
2011-08-09 00:31:17 +04:00
<div class="player" id="jp-player"></div>
2011-08-08 23:40:39 +04:00
</div>
2011-08-11 13:27:14 +04:00
<ul id="leftcontent"></ul>
2011-08-08 23:40:39 +04:00
<div id="rightcontent">
2011-08-09 00:31:17 +04:00
<div id="scan">
2011-08-25 11:04:08 +04:00
<p id="scancount" style="display:none"><span class="songCount">0</span> <?php echo $l->t('Songs scanned')?></p>
<input type="button" class="start" value="<?php echo $l->t('Rescan Collection')?>" />
2011-08-25 11:04:08 +04:00
<input type="button" class="stop" style="display:none" value="<?php echo $l->t('Pause')?>" />
<div id="scanprogressbar"></div>
2011-08-08 23:40:39 +04:00
</div>
2011-08-09 00:31:17 +04:00
<table id="collection">
2011-08-08 23:40:39 +04:00
<thead>
<tr>
<th><?php echo $l->t('Artist')?></th>
<th><?php echo $l->t('Album')?></th>
<th><?php echo $l->t('Title')?></th>
</tr>
2011-08-08 23:40:39 +04:00
</thead>
<tbody>
2011-08-09 00:31:17 +04:00
<tr class="template">
<td class="artist"><a></a></td>
<td class="album"><a></a></td>
<td class="title"><a></a></td>
2011-08-08 23:40:39 +04:00
</tr>
</tbody>
</table>
</div>