Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Critical items to know are:
- changed behaviour

## [master](https://github.com/vsoch/docsy-jekyll/tree/master)
- adding breadcrumb link to documentation root (0.0.16)
- bug with link in top breadcrumb (404) missing baseurl (0.0.15)
- bug that news items (posts) don't render in search (0.0.14)
- minimum width of 150px for top right site name (0.0.13)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.15
0.0.16
3 changes: 3 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
<nav aria-label="breadcrumb" class="d-none d-md-block d-print-none">
<ol class="breadcrumb spb-1">
{% if page.url != "/docs/" %}<li class="breadcrumb-item">
<a href="{{ site.url }}{{ site.baseurl }}/docs/">Documentation</a>
</li>{% endif %}
<li class="breadcrumb-item active" aria-current="page">
<a href="{{ site.url }}{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a>
</li>
Expand Down