Grid

<div class="grid-base">
    <div class="grid-item-full">
        Grid item full
    </div>
    <div class="grid-item-half">
        Grid item half
    </div>
    <div class="grid-item-half">
        Grid item half
    </div>
    <div class="grid-item-one-third">
        Grid item one third
    </div>
    <div class="grid-item-two-third">
        Grid item two third
    </div>
    <div class="grid-item-two-third">
        Grid item two third
    </div>
    <div class="grid-item-one-third">
        Grid item one third
    </div>
</div>
<div class="{{ grid_class }}">
  {% block grid_items %}
    {% include '@grid-item--full' %}
    {% include '@grid-item--half' %}
    {% include '@grid-item--half' %}
    {% include '@grid-item--one-third' %}
    {% include '@grid-item--two-third' %}
    {% include '@grid-item--two-third' %}
    {% include '@grid-item--one-third' %}
  {% endblock %}
</div>
{
  "grid_class": "grid-base"
}

There are no notes for this item.