cms/app-client/app/templates/player.hbs
author nowmad@nowmads-macbook-pro.local
Thu, 07 Jan 2016 17:46:50 +0100
changeset 81 848e4a5ad4d9
parent 65 5d5c30207e4c
child 84 36f84e8f1ad5
permissions -rw-r--r--
update date params to be an array of date instead of a string

<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>