This repository has been archived on 2020-09-29. You can view files and clone it, but cannot push or open issues/pull-requests.
flatfilecms/flatfilecms/templates/macros.jinja2

11 lines
249 B
Plaintext
Raw Normal View History

2018-10-15 01:43:11 +03:00
{% macro b(class=None, tag="div", id=None) -%}
<{{ tag }}
{%- if class is not none %} class="{{class}}" {%- endif -%}
{%- if id is not none %} id="{{id}}" {%- endif -%}
>
{%- if caller %}
{{ caller() }}
{% endif -%}
</{{ tag }}>
{%- endmacro %}