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

8 lines
254 B
Django/Jinja

{% macro b(tag="div", attributes=None) -%}
<{{ tag }}{% if attributes %} {{attributes|safe}}{%endif%}{% for name, value in kwargs.items() %} {{name}}="{{value}}"{% endfor -%}>
{%- if caller %}
{{ caller() }}
{% endif -%}
</{{ tag }}>
{%- endmacro %}