Skip to content

Commit

Permalink
Merge pull request #307 from cagov/jbum-fix-breadcrumbs
Browse files Browse the repository at this point in the history
Fixed Reports breadcrumb.
  • Loading branch information
jbum authored May 3, 2024
2 parents 69b0879 + 85f9e59 commit 890cca3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/_includes/breadcrumb.njk
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{% set crumbs = collections.all | eleventyNavigationBreadcrumb(articleId) %}
{%- for crumb in crumbs %}
<span class="crumb separator">/</span>
{% if crumb.title == 'Projects' or crumb.title == 'CalAcademy' %}
{% if crumb.title == 'Projects' or crumb.title == 'CalAcademy' or crumb.title == 'Reports' %}
<a class="crumb" href="{{ crumb.url }}">{{ crumb.title | safe }}</a>
{% else %}
<span class="crumb">{{ crumb.title | safe }}</span>
Expand Down

0 comments on commit 890cca3

Please sign in to comment.