Skip to main content

Work in progress

This page is a design preview. It may not contain the latest guidance and may not behave as expected.

Current guidance can always be found at design-system.dwp.gov.uk.

Header navigation - no JavaScript

Nunjucks

{% from "internal-service-header/macro.njk" import dwpHeader %}

{{
        dwpHeader({
            serviceName: "Service name",
            serviceHref: '#',
            container: true,
            mobile: {
                disabled: true
            },
            navigation: {
              items: [
                  {
                      href: "#",
                      text: "Find someone"
                  },
                  {
                      href: "#",
                      text: "Tasks"
                  },
                  {
                      href: "#",
                      text: "Telephone claim"
                  },
                  {
                      href: "#",
                      text: "Paper claim"
                  },
                  {
                      href: "#",
                      text: "Admin"
                  }
              ]
          }  
        })
}}