With links
Nunjucks
{% from "internal-service-footer/macro.njk" import dwpFooter %}
{{
dwpFooter({
navigation: [
{
title: "Two column list",
width: "two-thirds",
columns: 2,
items: [
{
text: "Item 1",
href: "#"
},
{
text: "Item 2",
href: "#"
},
{
text: "Item 3",
href: "#"
},
{
text: "Item 4",
href: "#"
},
{
text: "Item 5",
href: "#"
},
{
text: "Item 6",
href: "#"
}
]
},
{
title: "One column list",
width: "one-third",
items: [
{
text: "Item 1",
href: "#"
},
{
text: "Item 2",
href: "#"
},
{
text: "Item 3",
href: "#"
}
]
}
],
meta: {
visuallyHiddenTitle: "Meta links",
items: [
{
href: "#",
text: "Item 1"
},
{
href: "#",
text: "Item 2"
},
{
href: "#",
text: "Item 3"
}
],
text: "Plain text item"
}
})
}}