forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
26 lines
639 B
Twig
26 lines
639 B
Twig
{#
|
|
/**
|
|
* @file
|
|
* Two column template for the checkout form.
|
|
*
|
|
* Available variables:
|
|
* - form: The form.
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
#}
|
|
<div class="layout-checkout-form clearfix">
|
|
<div class="row">
|
|
<div class="layout-region layout-region-checkout-main col-xs-12 col-md-7">
|
|
{{ form|without('sidebar', 'actions') }}
|
|
</div>
|
|
<div class="layout-region layout-region-checkout-secondary col-xs-12 col-md-5">
|
|
<h4>{% trans %} Order Summary {% endtrans %}</h4>
|
|
{{ form.sidebar }}
|
|
</div>
|
|
</div>
|
|
<div class="layout-region layout-region-checkout-footer col-xs-12">
|
|
{{ form.actions }}
|
|
</div>
|
|
</div>
|