Fix pathing

This commit is contained in:
Patrick Marsceill 2018-10-23 12:56:46 -04:00
parent 25cd289df5
commit 0611696c2d
No known key found for this signature in database
GPG Key ID: 286B93882D828F40
1 changed files with 1 additions and 1 deletions

View File

@ -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 }}/{{ page.parent | slugify }}">{{ page.parent }}</a></li>
<li class="breadcrumb-nav-list-item"><a href="{{ site.url | absolute_url }}/{{ page.parent | slugify }}">{{ page.parent }}</a></li>
<li class="breadcrumb-nav-list-item"><span>{{ page.title }}</span></li>
</ol>
</nav>