Added album info change stuff

This commit is contained in:
gballan1
2016-11-28 21:23:55 -05:00
parent 9aff68ca86
commit b6915c242d
3 changed files with 21 additions and 6 deletions

View File

@ -20,12 +20,12 @@
<!-- left album stuff -->
<article class="col-sm-5 col-xs-12">
<div class="thumbnail shadow-1">
<img class="image-responsive album-art" src="{{ albums[0].album_art }}" alt="{{ albums[0].title }}">
<img id="album-artwork" class="image-responsive album-art" src="{{ albums[0].album_art }}" alt="{{ albums[0].title }}">
<div class="caption">
<h3>{{ albums[0].title }}</h3>
<h3 id="album-title">{{ albums[0].title }}</h3>
{% if albums[0].description %}
<hr />
<p>{{ albums[0].description }}</p>
<p id="album-description">{{ albums[0].description }}</p>
{% endif %}
</div>
</div>

View File

@ -20,12 +20,12 @@
<!-- left album stuff -->
<article class="col-sm-5 col-xs-12">
<div class="thumbnail shadow-1">
<img class="image-responsive album-art" src="{{ albums[0].album_art }}" alt="{{ albums[0].title }}">
<img id="album-artwork" class="image-responsive album-art" src="{{ albums[0].album_art }}" alt="{{ albums[0].title }}">
<div class="caption">
<h3>{{ albums[0].title }}</h3>
<h3 id="album-title">{{ albums[0].title }}</h3>
{% if albums[0].description %}
<hr />
<p>{{ albums[0].description }}</p>
<p id="album-description">{{ albums[0].description }}</p>
{% endif %}
</div>
</div>