{% macro html(copy) %}

{{ copy }}

{% endmacro %} {% set filler %} {% include './filler.html' %} {% endset %} {% macro lorem(paragraphs=1) %} {% for i in range(0, paragraphs)%} {{ html(filler) }} {% endfor %} {% endmacro %}