Sub navigation menu (experimental) example
Custom button text
How it looks (preview)
How to call this example
<%= render "govuk_publishing_components/components/sub_navigation_menu", {
button_text: "Open me",
links: [
{
text: "Example Heading",
links: [
{
text: "Hello world",
href: "/hello-world"
}
]
},
{
text: "Another Heading",
links: [
{
text: "Example Link",
href: "/hello-world"
}
]
}
]
} %>