Fixed music player view

This commit is contained in:
Ascendings 2016-04-20 23:49:25 -04:00
parent f4efb0d031
commit 2a63d428e4

View File

@ -21,12 +21,12 @@
<!-- current album details -->
<section class="col-sm-5 col-xs-12">
<div class="thumbnail shadow-1">
<img src="{{ albums[0].get.album_art }}" alt="{{ albums[0].get.title }}">
<img class="image-responsive" src="{{ albums[0].album_art }}" alt="{{ albums[0].title }}">
<div class="caption">
<h3>{{ albums[0].get.title }}</h3>
{% if albums[0].get.description %}
<h3>{{ albums[0].title }}</h3>
{% if albums[0].description %}
<hr />
<p>{{ albums[0].get.description }}</p>
<p>{{ albums[0].description }}</p>
{% endif %}
</div>
</div>
@ -41,11 +41,11 @@
<section class="row">
{% for album in albums %}
<!-- album details -->
<div class="col-sm-2 col-xs-6">
<div class="col-sm-3 col-xs-6">
<div class="thumbnail shadow-1">
<img src="{{ album.get.album_art }}" alt="{{ album.get.title }}">
<img src="{{ album.album_art }}" alt="{{ album.title }}">
<div class="caption">
<h5>{{ album.get.title }}</h5>
<h5>{{ album.title }}</h5>
</div>
</div>
</div>