{# Boxes -- A set of macros used for containing content in the main content area of the admin UI. If you want boxes side by side, you can place multiple boxes into a row like so: -------------------------------------------------------------------------------- {%- import "macros/boxes.html" as _boxes -%} {% call _boxes.row() -%} {% call _boxes.box() -%} ... {%- endcall %} {% call _boxes.box() -%} ... {%- endcall %} {%- endcall %} -------------------------------------------------------------------------------- However, if you want a single box, you can simply insert your content into a box like so: -------------------------------------------------------------------------------- {% call _boxes.box() -%} ... {%- endcall %} -------------------------------------------------------------------------------- As standard you can also pass `class` to apply a custom class style to the containing element. You can also pass any other HTML attribute using keyword arguments and these will be applied to the container like so: -------------------------------------------------------------------------------- {% _boxes.row( class='some-class', **{'data-some-attribute': 'Some value'} ) -%} ... {%- endcall %} -------------------------------------------------------------------------------- #} {% macro row(class=None) -%}