29 lines
1.1 KiB
Twig
29 lines
1.1 KiB
Twig
{#
|
|
/**
|
|
* @file
|
|
* Default theme implementation for a 'form' element.
|
|
*
|
|
* Available variables
|
|
* - attributes: A list of HTML attributes for the wrapper element.
|
|
* - children: The child elements of the form.
|
|
*
|
|
* @see template_preprocess_form()
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
#}
|
|
<div class="buttons-filtres-ressources">
|
|
<button class="button-videos" type="button" style=""><a href="/ressources?field_type_de_media_target_id=681&field_type_de_ressource_target_id=All&field_mots_clefs_target_id=All&field_date_de_parution_value=&combine=#filtres"> Vidéos</a></button>
|
|
|
|
<button class="button-podcasts" type="button" style=""><span>Podcasts</span></button>
|
|
|
|
<button class="button-reportages-photos" type="button" style=""><span>Reportages photos</span></button>
|
|
<button class="button-livres" type="button" style=""><span>Livres</span></button>
|
|
<button class="button-articles" type="button" style=""><span>Articles</span></button>
|
|
<button class="button-publications-rapports" type="button" style=""><span>Publications/rapports</span></button>
|
|
</div>
|
|
|
|
<form{{ attributes }}>
|
|
{{ children }}
|
|
</form>
|