21 lines
791 B
HTML
21 lines
791 B
HTML
|
[(#REM) modele <listetranscriptions|>
|
||
|
* sans paramètre = le mois en cours
|
||
|
* periode = sous forme stricte Y-m
|
||
|
soit |periode=2020-02
|
||
|
]
|
||
|
#SET{'borne_debut_mois', (#ENV{date}|affdate{'Y-m'}|librealire_moisdecal{0,'Y-m-d'})}
|
||
|
#SET{'borne_fin_mois', (#ENV{date}|affdate{'Y-m'}|librealire_moisdecal{1,'Y-m-d'})}
|
||
|
[(#ENV{periode}|oui)
|
||
|
[(#SET{'borne_debut_mois', [(#ENV{periode}|librealire_moisdecal{0,'Y-m-d'})]})]
|
||
|
[(#SET{'borne_fin_mois', [(#ENV{periode}|librealire_moisdecal{1,'Y-m-d'})]})]
|
||
|
]
|
||
|
<BOUCLE_compo(RUBRIQUES){composition=transcriptions}>
|
||
|
<B_trans>
|
||
|
<ul class="spip">
|
||
|
<BOUCLE_trans(ARTICLES){id_rubrique}{par date}{date >= #GET{borne_debut_mois}}{date < #GET{borne_fin_mois}}>
|
||
|
<li><a href="#URL_SPIP">#TITRE</a> - [(#DATE|affdate)]</li>
|
||
|
</BOUCLE_trans>
|
||
|
</ul>
|
||
|
</B_trans>
|
||
|
</BOUCLE_compo>
|