cms/app-client/app/templates/application.hbs
author nowmad@nowmads-macbook-pro.local
Wed, 20 Jan 2016 23:05:52 +0100
changeset 91 acfeddc7821d
parent 84 36f84e8f1ad5
child 94 62984937a062
permissions -rw-r--r--
rename "sound" to "document"
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
84
36f84e8f1ad5 add d3js for langue visu
nowmad@nowmads-macbook-pro.local
parents: 73
diff changeset
     1
<div id="info-modal"></div>
16
70e9a764d6d7 add all tabs corresponding to each visualization, update name and structure and create a simple squeleton
nowmad@23.1.168.192.in-addr.arpa
parents: 10
diff changeset
     2
<div class="corpus-app-container">
5
d4b3da0dadc9 init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
     3
  {{outlet}}
47
aca69a9db743 add specific outlet for carto template
nowmad@nowmads-macbook-pro.local
parents: 35
diff changeset
     4
  <div class="carto">{{outlet "carto"}}</div>
5
d4b3da0dadc9 init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
     5
</div>
16
70e9a764d6d7 add all tabs corresponding to each visualization, update name and structure and create a simple squeleton
nowmad@23.1.168.192.in-addr.arpa
parents: 10
diff changeset
     6
70e9a764d6d7 add all tabs corresponding to each visualization, update name and structure and create a simple squeleton
nowmad@23.1.168.192.in-addr.arpa
parents: 10
diff changeset
     7
<div class="corpus-app-wrapper">
70e9a764d6d7 add all tabs corresponding to each visualization, update name and structure and create a simple squeleton
nowmad@23.1.168.192.in-addr.arpa
parents: 10
diff changeset
     8
  <div class="corpus-app-player">
70e9a764d6d7 add all tabs corresponding to each visualization, update name and structure and create a simple squeleton
nowmad@23.1.168.192.in-addr.arpa
parents: 10
diff changeset
     9
    {{partial "player"}}
70e9a764d6d7 add all tabs corresponding to each visualization, update name and structure and create a simple squeleton
nowmad@23.1.168.192.in-addr.arpa
parents: 10
diff changeset
    10
  </div>
55
484c02a0e590 reorganize html of application
nowmad@nowmads-macbook-pro.local
parents: 47
diff changeset
    11
  {{partial "results"}}
16
70e9a764d6d7 add all tabs corresponding to each visualization, update name and structure and create a simple squeleton
nowmad@23.1.168.192.in-addr.arpa
parents: 10
diff changeset
    12
</div>
91
acfeddc7821d rename "sound" to "document"
nowmad@nowmads-macbook-pro.local
parents: 84
diff changeset
    13
acfeddc7821d rename "sound" to "document"
nowmad@nowmads-macbook-pro.local
parents: 84
diff changeset
    14
{{#if isShowingModal}}
acfeddc7821d rename "sound" to "document"
nowmad@nowmads-macbook-pro.local
parents: 84
diff changeset
    15
  {{#ember-wormhole to='info-modal'}}
acfeddc7821d rename "sound" to "document"
nowmad@nowmads-macbook-pro.local
parents: 84
diff changeset
    16
    <div class="overlay" {{action 'toggleModal'}}></div>
acfeddc7821d rename "sound" to "document"
nowmad@nowmads-macbook-pro.local
parents: 84
diff changeset
    17
    <div class="dialog">
acfeddc7821d rename "sound" to "document"
nowmad@nowmads-macbook-pro.local
parents: 84
diff changeset
    18
      <h1>{{currentDetails.title}}</h1>
acfeddc7821d rename "sound" to "document"
nowmad@nowmads-macbook-pro.local
parents: 84
diff changeset
    19
      <p><b>Description: </b>{{currentDetails.description}}</p>
acfeddc7821d rename "sound" to "document"
nowmad@nowmads-macbook-pro.local
parents: 84
diff changeset
    20
      <p><b>Interviewer: </b>{{currentDetails.interviewer}}</p>
acfeddc7821d rename "sound" to "document"
nowmad@nowmads-macbook-pro.local
parents: 84
diff changeset
    21
      <p><b>Type de Discours: </b>{{currentDetails.type}}</p>
acfeddc7821d rename "sound" to "document"
nowmad@nowmads-macbook-pro.local
parents: 84
diff changeset
    22
      <p><b>Localisation: </b>{{currentDetails.spatial}}</p>
acfeddc7821d rename "sound" to "document"
nowmad@nowmads-macbook-pro.local
parents: 84
diff changeset
    23
      <p><b>Langue: </b>{{currentDetails.language}}</p>
acfeddc7821d rename "sound" to "document"
nowmad@nowmads-macbook-pro.local
parents: 84
diff changeset
    24
      <p><b>Date de Creation: </b>{{currentDetails.created}}</p>
acfeddc7821d rename "sound" to "document"
nowmad@nowmads-macbook-pro.local
parents: 84
diff changeset
    25
      <button class="pull-right" {{action 'toggleModal'}}>Close</button>
acfeddc7821d rename "sound" to "document"
nowmad@nowmads-macbook-pro.local
parents: 84
diff changeset
    26
    </div>
acfeddc7821d rename "sound" to "document"
nowmad@nowmads-macbook-pro.local
parents: 84
diff changeset
    27
  {{/ember-wormhole}}
acfeddc7821d rename "sound" to "document"
nowmad@nowmads-macbook-pro.local
parents: 84
diff changeset
    28
{{/if}}