Skip to content

Commit

Permalink
Merge pull request barryclark#8 from pmarsceill/more-path-problems
Browse files Browse the repository at this point in the history
Fix breadcrumb path
  • Loading branch information
pmarsceill authored Oct 23, 2018
2 parents 6e534b6 + 3752c58 commit 6c05ef8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
{% if page.parent != nil and page.parent != page.title %}
<nav class="breadcrumb-nav">
<ol class="breadcrumb-nav-list">
<li class="breadcrumb-nav-list-item"><a href="{{ site.url }}{{ site.baseurl }}{{ page.parent | slugify }}">{{ page.parent }}</a></li>
<li class="breadcrumb-nav-list-item"><a href="{{ site.url }}{{ site.baseurl }}/{{ page.parent | slugify }}">{{ page.parent }}</a></li>
<li class="breadcrumb-nav-list-item"><span>{{ page.title }}</span></li>
</ol>
</nav>
Expand Down

0 comments on commit 6c05ef8

Please sign in to comment.