58 lines
1.8 KiB
HTML
58 lines
1.8 KiB
HTML
[===============================================================(#REM)
|
||
Déclaration du bloc destiné à recevoir le client
|
||
]
|
||
<article class="texte_content">
|
||
|
||
<BOUCLE_entete(ARTICLES){page=tableaumusiques}>
|
||
<header class="cartouche">
|
||
[<p class="#EDIT{surtitre} surtitre">#(#SURTITRE)</p>]
|
||
<h1><span class="#EDIT{titre} article__titre">#TITRE</span>[
|
||
<small class="#EDIT{soustitre} soustitre">(#SOUSTITRE)</small>
|
||
]</h1>
|
||
</header>
|
||
<div class="main">
|
||
[<div class="#EDIT{chapo} article__chapo">(#CHAPO|adaptive_images{#CONST{_CONTENT_WIDTH},0})</div>]
|
||
[<div class="#EDIT{texte} article__texte">(#TEXTE|adaptive_images{#CONST{_CONTENT_WIDTH},0})</div>]
|
||
</div>
|
||
</BOUCLE_entete>
|
||
|
||
|
||
|
||
<div class="lav-tablesorter-Conteneur">
|
||
|
||
<B_tableau>
|
||
<h2>#TOTAL_BOUCLE titres diffusés</h2>
|
||
<table id="musiques">
|
||
<thead>
|
||
<tr>
|
||
<th data-sorter="text" data-placeholder="Filtre sur l’artiste">Artiste</th>
|
||
<th data-sorter="text" data-placeholder="Filtre sur le titre">Titre</th>
|
||
<th data-placeholder="Filtre sur le genre">Genre</th>
|
||
<th data-placeholder="Filtre sur la licence">Licence</th>
|
||
<!--<th data-placeholder="Filtre sur l’émission">Émissions</th>-->
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
|
||
<BOUCLE_tableau(DATA){source json, https://bases.fichotheque.net/exemole/libreavous/api/v1/site/fiche-array?sort=titre-asc&xml=%3Cfiche-query%3E%3Ccorpus%3Emorceau%3C%2Fcorpus%3E%3C%2Ffiche-query%3E}{datapath array}>
|
||
<tr>
|
||
<td>#VALEUR{properties/artistes}</td>
|
||
<td><a href="#VALEUR{properties/urlorigin}" target="_blank">#VALEUR{properties/titre}</a></td>
|
||
<td>#VALEUR{properties/genres}</td>
|
||
<td>#VALEUR{properties/licence}</td>
|
||
<!--<td>
|
||
<BOUCLE_emissions(DATA){source array, #VALEUR{properties/emissions}}>
|
||
<a href="#VALEUR{idalpha}">#VALEUR{idalpha}</a>
|
||
</BOUCLE_emissions>
|
||
</td>-->
|
||
</tr>
|
||
</BOUCLE_tableau>
|
||
|
||
|
||
</tbody>
|
||
</table>
|
||
</B_tableau>
|
||
</div>
|
||
</article>
|
||
|