{% macro tnaGlobalHeader(params) %} {%- from 'components/phase-banner/macro.html' import tnaPhaseBanner -%} {%- from 'partials/logo/macro.html' import tnaLogo -%} {%- set containerClasses = [params.classes] if params.classes else [] -%} {%- if params.collapseOnMedium -%} {%- set containerClasses = containerClasses + ['tna-global-header--collapse-on-medium'] -%} {%- endif -%} {% if 'logo' in params %} {% set logo = params.logo %} {% elif params.defaultContent %} {% set logo = { 'href': (params.defaultContentBaseURL or '') ~ '/', 'title': 'The National Archives home page' } %} {% else %} {% set logo = None %} {% endif %} {% if 'navigation' in params %} {% set navigation = params.navigation %} {% elif params.defaultContent %} {% set navigation = [ { 'text': 'Visit', 'href': (params.defaultContentBaseURL or '') ~ '/visit/' }, { 'text': 'What’s on', 'href': (params.defaultContentBaseURL or '') ~ '/whats-on/' }, { 'text': 'Explore the collection', 'href': (params.defaultContentBaseURL or '') ~ '/explore-the-collection/' }, { 'text': 'Help using the archive', 'href': (params.defaultContentBaseURL or '') ~ '/help-with-your-research/' }, { 'text': 'Education', 'href': (params.defaultContentBaseURL or '') ~ '/education/' }, { 'text': 'Professional guidance and services', 'href': (params.defaultContentBaseURL or '') ~ '/professional-guidance-and-services/' } ] %} {% else %} {% set navigation = [] %} {% endif %} {% if 'topNavigation' in params %} {% set topNavigation = params.topNavigation %} {% elif params.defaultContent %} {% set topNavigation = [ { 'text': 'Search', 'href': (params.defaultContentBaseURL or '') ~ '/search/', 'icon': 'search' }, { 'text': 'Shop', 'href': 'https://shop.nationalarchives.gov.uk/', 'icon': 'shop' } ] %} {% else %} {% set topNavigation = [] %} {% endif %}
{% if params.phaseBanner -%} {{ tnaPhaseBanner(params.phaseBanner) }} {% endif -%}
{%- if topNavigation or navigation %}
{%- endif %} {%- if navigation %} {%- endif %} {%- if topNavigation %} {%- endif %}
{% endmacro %}