finalized styling of checkout order informations page

This commit is contained in:
2021-01-06 22:04:53 +01:00
parent d9ccca3a5e
commit 2cb5a3c5b4
9 changed files with 274 additions and 11 deletions

View File

@@ -0,0 +1,24 @@
{#
/**
* @file
*
* Default product template.
*
* Available variables:
* - attributes: HTML attributes for the wrapper.
* - product: The rendered product fields.
* Use 'product' to print them all, or print a subset such as
* 'product.title'. Use the following code to exclude the
* printing of a given field:
* @code
* {{ product|without('title') }}
* @endcode
* - product_entity: The product entity.
* - product_url: The product URL.
*
* @ingroup themeable
*/
#}
<article{{ attributes }}>
{{- product|without('variation_attributes') -}}
</article>