Add breadcrumb navigation

Disabled by default, and you probably want to keep it that way. It
doesn't fit in very well with the design currently. I just found it in
the Hugo docs and thought I might as well put it in for safe keeping.
This commit is contained in:
2021-10-01 20:54:18 -05:00
parent 1fe6a4c428
commit 157feeb814
4 changed files with 51 additions and 11 deletions

View File

@ -46,3 +46,27 @@ blockquote {
border-left: 5px solid #222;
padding-left: 10px;
}
/* Breadcrumb Navigation */
ul.breadcrumb {
padding 10px 16px;
list-style: none;
}
ul.breadcrumb li {
display: inline;
}
ul.breadcrumb li a {
text-decoration: none;
}
ul.breadcrumb li+li:before {
padding: 8px;
content: "/\00a0";
}
ul.breadcrumb li.active a {
color: inherit;
text-decoration: none;
}