{#
component: footer
title {string}: Titre
titleAnnex {string|null}: Sur titre au dessus du titre (Default: null, pas de sur titre)
background {image}: image de fond
breadcrumb {array|null}: tableau des liens du fil d'ariane (chacun contenant title, to, et text) (Default: null, pas de breadcrumb)
#}
{% set props = {
text: null,
name: null,
id: null,
class: "",
contactButton:false
}|merge(props|default({})) %}
<div data-component="submit" class="Submit-component">
{% if props.contactButton %}
{% set schemeAndHttpHost = app.request.getSchemeAndHttpHost %}
{# {% if 'miramar-lacigale.com' in schemeAndHttpHost %}
<!--
Event snippet for [MIRAMAR] - CONTACT on : Please do not remove.
Place this snippet on pages with events you’re tracking.
Creation date: 07/15/2020
-->
<script>
gtag('event', 'conversion', {
'allow_custom_scripts': true,
'send_to': 'DC-10209412/invmedia/miram000+standard'
});
</script>
<noscript>
<img src="https://ad.doubleclick.net/ddm/activity/src=10209412;type=invmedia;cat=miram000;dc_lat=;dc_rdid=;tag_for
_child_directed_treatment=;tfua=;npa=;ord=1?" width="1" height="1" alt=""/>
</noscript>
<!-- End of event snippet: Please do not remove -->
{% endif %} #}
{% endif %}
{# Submit #}
<input class="Submit-input {{props.class}}" {% if props.name != null %} id="{{props.name}}" {% endif %} {% if props.id != null %} id="{{props.id}}" {% endif %} type="submit" value="{{ props.text }}">
</div>