{# Page header block #} {% macro render_header(header=none, title="", description="", background="") %} {% set h = header if header is mapping else {} %} {% set h_title = h.title | default(title) if h else title %} {% set h_description = h.description | default(description) if h else description %} {% set h_background = h.background | default(background) if h else background %} {% if h_title or h_description or h_background %}

{{ h_title }}

{% if h_description %}

{{ h_description }}

{% endif %}
{% endif %} {% endmacro %}