cms/app-client/app/templates/player.hbs
author nowmad@23.1.168.192.in-addr.arpa
Fri, 18 Dec 2015 15:19:19 +0100
changeset 74 2bd46d0b2c80
parent 65 5d5c30207e4c
child 84 36f84e8f1ad5
permissions -rw-r--r--
Propagate the current query param to the new route (necessary when the route change comes from outside the app)

<div class="corpus-app-content">
  <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>