23 lines
854 B
HTML
23 lines
854 B
HTML
<h3 class="text-center"> Votre recherche '{{terms}}' à donné {{response.total_hits}} résultats en {{round4Dec(inSecond(response.took))}} s</h3>
|
|
|
|
<div class="row" ng-repeat="h in allHits">
|
|
<div class="col-xs-5 col-sm-3 album" >
|
|
<album album-id="h.id" ratio="0.95"> </album>
|
|
</div>
|
|
<div class="col-xs-7 col-sm-9 search-result">
|
|
<div class="search-score"> {{h.fields['ref']}} <span class="badge">Score: {{round4Dec(h.score)}} </span></div>
|
|
<h4> {{h.fields['série']}} - {{h.fields['titre']}} </h4>
|
|
<hr/>
|
|
<dl class="hidden-xs dl-horizontal">
|
|
<div ng-repeat="(field,fragments) in h.fragments">
|
|
<dt>{{field}}</dt>
|
|
<dd ng-repeat="f in fragments" ng-bind-html="trustedFragment(f)"></dd>
|
|
</div>
|
|
</dl>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row text-center" in-view="$inview&&loadMore()" ng-if="scrollMore">
|
|
Chargement ...
|
|
</div>
|