Skip to content

Commit 6947027

Browse files
committed
fixing permalink in top page breadcrumb to close #16
Signed-off-by: vsoch <[email protected]>
1 parent 4ab580a commit 6947027

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Diff for: CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Critical items to know are:
1414
- changed behaviour
1515

1616
## [master](https://github.com/vsoch/docsy-jekyll/tree/master)
17+
- bug with link in top breadcrumb (404) missing baseurl (0.0.15)
1718
- bug that news items (posts) don't render in search (0.0.14)
1819
- minimum width of 150px for top right site name (0.0.13)
1920
- tags page and option to link to it from post/docs tags (0.0.12)

Diff for: VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.14
1+
0.0.15

Diff for: _layouts/default.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
2525
<ol class="breadcrumb spb-1">
2626
<li class="breadcrumb-item active" aria-current="page">
27-
<a href="{{ page.url }}">{{ page.title }}</a>
27+
<a href="{{ site.url }}{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a>
2828
</li>
2929
</ol>
3030
</nav>

0 commit comments

Comments
 (0)