cms/app-client/app/templates/application.hbs
author Chloe Laisne <chloe.laisne@gmail.com>
Fri, 14 Oct 2016 19:49:28 +0200
changeset 333 400719e1e9a8
parent 315 e3217b6adea3
child 344 70451a4dc9ae
permissions -rw-r--r--
Add share notice button + Remove external notice

{{player-component action="changeDocument" document=currentItem}}

<div class="corpus-window">

    <div class="corpus-app-container{{if player.window ' window'}}">
    {{#if player.window}}
        {{#if (eq player.window 'notice')}}
            {{ notice-component }}
        {{else if (if-and (eq player.window 'transcript') player.transcript)}}
            {{ transcript-component }}
        {{/if}}
    {{else}}
        {{ outlet }}
    {{/if}}
    </div>
    {{#if player.window}}
    {{toolbar-component}}
    {{/if}}

    <div class="corpus-app-wrapper">
        {{ filter-component }}
        {{ playlist-component notice=notice model=model }}
    </div>

</div>