{% macro button(title, icon = 'fa-file-text-o', attributes = {}) %}

{{ title }}

{% endmacro %} {% macro common_button(title, url, target = '_blank', icon = 'fa-file-text-o', class = null) %} {% import _self as macro_button %} {{ macro_button.button( title, icon, { 'href': url, 'target': target, 'class': class } ) }} {% endmacro %}