You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
626B

  1. {% macro startCard(col, zone = "default", card ='primary', fullWidth = false ) %}
  2. {% if col > 0 %}<div class="col-{{ col }}">{% endif %}
  3. <div class="card card-{{ card }}">
  4. <div class="card-header">
  5. <h3 class="card-title">
  6. {% set label = "group."~zone %}
  7. {{ label|trans({}, 'lcshop')|raw }}
  8. </h3>
  9. </div>
  10. <div class="card-body {{ fullWidth == true ? 'p-0' : 'row' }}">
  11. {% endmacro %}
  12. v
  13. {% macro endCard(noCol = false) %}
  14. </div>
  15. </div>
  16. {% if noCol == false %}</div>{% endif %}
  17. {% endmacro %}