Skip to content

Commit

Permalink
Fix path to related include
Browse files Browse the repository at this point in the history
  • Loading branch information
paulrobertlloyd committed May 24, 2022
1 parent 843e0bf commit b652b3e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion layouts/collection.njk
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

{% if aside or related %}
<div class="govuk-grid-column-one-third">
{% include "shared/related.njk" %}
{% include "layouts/shared/related.njk" %}
</div>
{% endif %}
</div>
Expand Down
2 changes: 1 addition & 1 deletion layouts/page.njk
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
{{ content }}
{% endcall %}

{% include "shared/related.njk" %}
{% include "layouts/shared/related.njk" %}
{% endblock %}
2 changes: 1 addition & 1 deletion layouts/post.njk
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

{% if aside or related %}
<div class="govuk-grid-column-one-third">
{% include "shared/related.njk" %}
{% include "layouts/shared/related.njk" %}
</div>
{% endif %}
</div>
Expand Down
2 changes: 1 addition & 1 deletion layouts/product.njk
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
{% endcall %}
{% endblock %}

{% include "shared/related.njk" %}
{% include "layouts/shared/related.njk" %}
</main>
</div>
{% endblock %}
2 changes: 1 addition & 1 deletion layouts/side-navigation.njk
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
{{ content }}
{% endcall %}

{% include "shared/related.njk" %}
{% include "layouts/shared/related.njk" %}
</div>
</div>
{% endblock %}

0 comments on commit b652b3e

Please sign in to comment.