Skip to content

Latest commit

 

History

History
52 lines (42 loc) · 1.17 KB

File metadata and controls

52 lines (42 loc) · 1.17 KB

{% macro codeBox() %} %%CODE:%%

{{ code | safe | trim }}
{% endmacro %}

{% macro outputBox() %} %%OUTPUT:%%

{{ code | safe }}

{% endmacro %}

{% if horizontal != null %}

{{ codeBox() }} {{ outputBox() }}

{% else %}

{{ codeBox() }}

{{ outputBox() }}

{% endif %}