29 lines
951 B
Twig
29 lines
951 B
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=""><span>Vidéos</span></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>
|