--- a/cms/app-client/app/templates/player.hbs Thu Dec 17 12:13:58 2015 +0100
+++ b/cms/app-client/app/templates/player.hbs Thu Dec 17 12:14:31 2015 +0100
@@ -1,4 +1,14 @@
-<h2>This is the player</h2>
<div class="corpus-app-content">
- PLAYER
+ <audio id="audio-player" controls>
+ <source src="{{ currentItem.master }}" type="audio/ogg">
+ <source src="{{ currentItem.master }}" type="audio/mpeg">
+ <source src="{{ currentItem.master }}" type="audio/wav">
+ Your browser does not support the audio element.
+ </audio>
+ <p>
+ Title: {{ currentItem.title }}
+ </p>
+ <p>
+ Description: {{ currentItem.description }}
+ </p>
</div>