{% macro block(title, content) %}

{{ title }}

{{ content }}

{% endmacro %} {% macro include_block(title, content, name="block") %} {% include "benchmarks/" ~ name ~ ".html" %} {% endmacro %} {% macro include_with_context_block(title, content, name="block") %} {% with title=title, content=content %} {% include "benchmarks/" ~ name ~ ".html" %} {% endwith %} {% endmacro %} {% macro include_without_context_block(title, content, name="block") %} {% with title=title, content=content %} {% include "benchmarks/" ~ name ~ ".html" without context %} {% endwith %} {% endmacro %} {% macro snippet_block(title, content, name="block") %} {% snippet "benchmarks/" ~ name ~ ".html", title=title, content=content %} {% endmacro %}