marketo_suite-1.0.x-dev/templates/marketo-form-embed.html.twig
templates/marketo-form-embed.html.twig
{#
/**
* @file marketo-form-embed.html.twig
* Default theme implementation to present Marketo Forms.
*
* This template is used when viewing Marketo Form pages.
*
* Available variables:
* - attributes: HTML attributes for the container element.
*
* @see template_preprocess_marketo_form()
*
* @ingroup themeable
*/
#}
<div {{ create_attribute({'class': ['hidden', 'marketo-steps-wrapper', 'step-1']}) }}>
<div{{ create_attribute({'class': ['marketo-form', 'marketo-step', "marketo-step-1"]}) }}>
<form{{ form_attributes }}></form>
<span class="marketo-custom-response"></span>
{% if footer_html is not empty %}
<div class="marketo-footer-html">{{ footer_html }}</div>
{% endif %}
</div>
</div>
