Skip to content

Commit 463828e

Browse files
committed
Some lil fixes
1 parent 4602bc6 commit 463828e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

_includes/partials/breadcrumbs.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818

1919
{%- endcomment -%}
2020

21-
{% if page.breadcrumbs %}
21+
{%- if page.breadcrumbs -%}
2222
<div class="container breadcrumbs-element">
2323
<ol class="breadcrumb">
2424
{% for breadcrumb in breadcrumbs %}
25-
{% assign crumb = breadcrumb | split: ":" %}
25+
{%- assign crumb = breadcrumb | split: ":" -%}
2626
<li class="{{ crumb[2] }}">
2727
<a href="{{ crumb[1] | relative_url }}">{{ crumb[0] }}</a>
2828
</li>
2929
{% endfor %}
3030
</ol>
3131
</div>
32-
{% endif %}
32+
{%- endif -%}

_layouts/master.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</head>
1414
<body>
1515
{% include header.html %}
16-
{% include partials/breadcrumbs.html %}
16+
{%- include partials/breadcrumbs.html -%}
1717
{{ content }}
1818
{% include footer.html %}
1919
{% include partials/eu-cookie-message.html %}

0 commit comments

Comments
 (0)