2017-08-20 12:55:35 +02:00
|
|
|
<div class="container ficha">
|
2017-12-15 01:17:46 +01:00
|
|
|
<div class="row" style="width:100%;">
|
|
|
|
<a href="/catalog">
|
|
|
|
←
|
|
|
|
<span ng-show="lang == 'es'">Volver</span>
|
|
|
|
<span ng-show="lang == 'eus'">Itzuli</span>
|
|
|
|
</a>
|
|
|
|
</div>
|
2017-08-20 12:55:35 +02:00
|
|
|
<div class="row" style="border-bottom:solid #f5f5f5 10px; margin-bottom:10px;">
|
2017-12-15 01:17:46 +01:00
|
|
|
<div class="col-md-6"><h1>{{post.title.rendered}}</h1></div>
|
2017-08-20 12:55:35 +02:00
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-6">
|
2017-12-15 01:17:46 +01:00
|
|
|
<!-- castellano -->
|
|
|
|
<ul ng-show="lang == 'es'">
|
2018-01-15 11:19:35 +01:00
|
|
|
<li ng-if="post.e_idioma"><label>Idioma:</label> {{post.e_idioma}}</li>
|
|
|
|
<li ng-if="post.e_localizacion"><label>Localización:</label> {{post.e_localizacion.address}}</li>
|
|
|
|
<li ng-if="post.e_fecha_de_entrevista"><label>Fecha:</label> {{post.e_fecha_de_entrevista}}</li>
|
2017-12-15 01:17:46 +01:00
|
|
|
<li><label>Informantes:</label>
|
|
|
|
<ul>
|
|
|
|
<li ng-repeat="i in post.e_informantes">{{i.post_title}}</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
2018-01-15 11:19:35 +01:00
|
|
|
<li><label>Términos:</label>
|
2017-12-15 01:17:46 +01:00
|
|
|
<ul>
|
|
|
|
<li style="list-style:none;" ng-repeat="t in post.category"><button class="btn btn-secondary btn-sm" type="button">{{t.name}}</button></li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<!-- euskera -->
|
|
|
|
<ul ng-show="lang == 'eus'">
|
|
|
|
<li><label>Hizkuntza:</label> {{post.e_idioma}}</li>
|
2018-01-15 11:19:35 +01:00
|
|
|
<li ng-if="post.e_localizacion"><label>Kokapena:</label> {{post.e_localizacion.address}}</li>
|
|
|
|
<li ng-if="post.e_fecha_de_entrevista"><label>Data:</label> {{post.e_fecha_de_entrevista}}</li>
|
2017-12-15 01:17:46 +01:00
|
|
|
<li><label>Informatzaile:</label>
|
|
|
|
<ul>
|
|
|
|
<li ng-repeat="i in post.e_informantes">{{i.post_title}}</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
2018-01-15 11:19:35 +01:00
|
|
|
<li ng-if="post.cateogry"><label>Baldintzak:</label>
|
2017-12-15 01:17:46 +01:00
|
|
|
<ul>
|
|
|
|
<li style="list-style:none;" ng-repeat="t in post.category"><button class="btn btn-secondary btn-sm" type="button">{{t.name}}</button></li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class="col-md-6">
|
|
|
|
<video poster="{{post.featured_image_thumbnail_url}}" src="{{post.e_audiovisual}}" controls="" style="width:100%;">URL: {{post.e_audiovisual}} </video>
|
|
|
|
<button class="btn btn-primary btn-sm" type="button" data-toggle="collapse" data-target="#collapse-transcripcion" aria-expanded="false" aria-controls="collapseExample">Transcripcion</button>
|
|
|
|
</div>
|
2018-01-15 11:19:35 +01:00
|
|
|
<div class="row" style="" >
|
2017-12-15 01:17:46 +01:00
|
|
|
<div class="col-md-12">
|
2018-01-15 11:19:35 +01:00
|
|
|
<div ng-if="post.e_transcripcion" class="collapse" id="collapse-transcripcion" ng-bind-html="post.e_transcripcion" style="column-count:2;padding-top:20px;"></div>
|
2017-12-15 01:17:46 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-08-20 12:55:35 +02:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|