{# Header Row .landing-page .navy-line = 60px by default #} {% macro header_row(title, sub_text, line_margin_top = None, row_margin_bottom = None) %}
{{header(title, sub_text, line_margin_top)}}
{% endmacro %} {% macro header_row_wbutton(title, sub_text, button_url, button_text, line_margin_top = None, row_margin_bottom = None, button_color=None, target_blank=None) %}
{{header_row(title, sub_text, line_margin_top, row_margin_bottom)}} {{button_text}}
{% endmacro %} {% macro header(title, sub_text, line_margin_top) %} {% if title %}

{{title}}

{% endif %} {% if sub_text %}

{{sub_text|safe}}

{% endif %} {% endmacro %}