| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 | {#/** * @file * Single file default theme implementation for jPlayer audio player. * * Available variables: * - plugin_id: the name of the plugin being used for templating. * - plugin_theme: the name of the specific plugin theme, if it exists. * - files: array of render info for each file. * - settings: array of settings for thie player. * * @ingroup themeable */#}<div class="audiofield">  <div id="jquery_jplayer_{{ settings.id }}" class="jp-jplayer"></div>  <div id="jp_container_{{ settings.id }}" class="jp-audio" role="application" aria-label="media player">    <div class="jp-type-single">      <div class="jp-gui jp-interface">        <div class="jp-controls">          <button class="jp-play" role="button" tabindex="0">play</button>          <button class="jp-stop" role="button" tabindex="0">stop</button>        </div>        <div class="jp-progress">          <div class="jp-seek-bar">            <div class="jp-play-bar"></div>          </div>        </div>        <div class="jp-volume-controls">          <button class="jp-mute" role="button" tabindex="0">mute</button>          <button class="jp-volume-max" role="button" tabindex="0">max volume</button>          <div class="jp-volume-bar">            <div class="jp-volume-bar-value"></div>          </div>        </div>        <div class="jp-time-holder">          <div class="jp-current-time" role="timer" aria-label="time"> </div>          <div class="jp-duration" role="timer" aria-label="duration"> </div>          <div class="jp-toggles">            <button class="jp-repeat" role="button" tabindex="0">repeat</button>          </div>        </div>      </div>      <div class="jp-details">        <div class="jp-title" aria-label="title"> </div>      </div>      <div class="jp-no-solution">        <span>Update Required</span>        To play the media you will need to either update your browser to a recent version or update your <a href="http:// get.adobe.com/flashplayer/" target="_blank">Flash plugin</a>.      </div>    </div>  </div></div>
 |