website/app/views/music.twig

56 lines
1.4 KiB
Twig
Raw Normal View History

2015-08-30 12:34:43 -04:00
{% extends 'templates/default.php' %}
2015-10-06 12:08:25 -04:00
{% block javascripts %}
<script type="text/javascript" src="/js/modules/music-player.js"></script>
<script type="text/javascript" src="/js/music.js"></script>
{% endblock %}
2015-08-30 12:34:43 -04:00
{% block title %}Music{% endblock %}
{% block content %}
2015-10-02 00:25:57 -04:00
2015-10-06 11:09:46 -04:00
<header id="music-header" class="row">
<h1>Music</h1>
2015-10-02 00:25:57 -04:00
</header>
2016-04-20 23:11:33 -04:00
<!-- music player -->
<section class="row">
2015-10-02 01:09:43 -04:00
<!-- no javascript warning -->
<noscript class="card">Woah there, lassy! You will need to enable Javascript to use this page!</noscript>
2016-04-20 23:11:33 -04:00
<!-- 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 }}">
<div class="caption">
<h3>{{ albums[0].get.title }}</h3>
{% if albums[0].get.description %}
<hr />
<p>{{ albums[0].get.description }}</p>
{% endif %}
</div>
2015-10-02 01:25:46 -04:00
</div>
2016-04-20 23:11:33 -04:00
</section>
<!-- current playlist -->
<section class="card col-sm-7 col-xs-12">
</section>
</section>
<!-- available albums -->
<section class="row">
{% for album in albums %}
<!-- album details -->
<div class="col-sm-2 col-xs-6">
<div class="thumbnail shadow-1">
<img src="{{ album.get.album_art }}" alt="{{ album.get.title }}">
<div class="caption">
<h5>{{ album.get.title }}</h5>
</div>
</div>
2015-10-02 01:25:46 -04:00
</div>
2016-04-20 23:11:33 -04:00
{% endfor %}
2015-10-02 00:25:57 -04:00
</section>
2015-10-06 11:09:46 -04:00
{% endblock %}