{%- macro table(content, striped, bordered, condensed, hover, caption) -%} {%- set class = "table" -%} {%- if bordered -%} {%- set class = class ~ ' table-bordered' -%} {%- endif %} {%- if striped -%} {%- set class = class ~ ' table-striped' -%} {%- endif %} {%- if hoover -%} {%- set class = class ~ ' table-hoover' -%} {%- endif %} {%- if condensed -%} {%- set class = class ~ ' table-sm' -%} {%- endif %} {%- if caption -%} {%- endif %} {{ content }}
{{ caption }}
{%- endmacro %}