libreavous/squelettes/content/musiques.html

58 lines
1.8 KiB
HTML
Raw Normal View History

[===============================================================(#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>
2024-06-20 21:39:07 +02:00
<div class="lav-tablesorter-Conteneur">
<B_tableau>
2024-06-20 21:39:07 +02:00
<h2>#TOTAL_BOUCLE titres diffusés</h2>
<table id="musiques">
<thead>
<tr>
<th data-sorter="text" data-placeholder="Filtre sur lartiste">Artiste</th>
2024-07-18 13:20:50 +02:00
<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>
2024-07-18 13:20:50 +02:00
<!--<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>
2024-07-18 13:20:50 +02:00
<td><a href="#VALEUR{properties/urlorigin}" target="_blank">#VALEUR{properties/titre}</a></td>
<td>#VALEUR{properties/genres}</td>
<td>#VALEUR{properties/licence}</td>
2024-07-18 13:20:50 +02:00
<!--<td>
<BOUCLE_emissions(DATA){source array, #VALEUR{properties/emissions}}>
<a href="#VALEUR{idalpha}">#VALEUR{idalpha}</a>
</BOUCLE_emissions>
2024-07-18 13:20:50 +02:00
</td>-->
</tr>
</BOUCLE_tableau>
</tbody>
</table>
</B_tableau>
</div>
</article>