Skip to content

Commit

Permalink
add breadcrumbs to find page
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeGoodall committed Aug 13, 2024
1 parent f00bbb0 commit ff796cc
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/views/organisations/find.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{% from "govuk/components/breadcrumbs/macro.njk" import govukBreadcrumbs %}

{% extends "layouts/main.html" %}

{% set serviceType = 'Submit' %}
Expand All @@ -7,6 +9,15 @@

{{ super() }}

{{ govukBreadcrumbs({
items: [
{
text: "Home",
href: "/manage"
}
]
}) }}

{% endblock %}

{% block content %}
Expand Down

0 comments on commit ff796cc

Please sign in to comment.