diff options
author | luxagraf <sng@luxagraf.net> | 2022-12-29 19:16:22 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2022-12-29 19:16:22 -0600 |
commit | 171e38c61daced0b97081a226bc2beb215730509 (patch) | |
tree | 4d053e7a9abaab02ca44788c2a3e8f1f1e0843ba /templates/lib/breadcrumbs_detail.html | |
parent | b6613deaa9c18887c442a6275290c1e8c25a5f1f (diff) |
posts: changed essays to notes. less pretentious.
Diffstat (limited to 'templates/lib/breadcrumbs_detail.html')
-rw-r--r-- | templates/lib/breadcrumbs_detail.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/lib/breadcrumbs_detail.html b/templates/lib/breadcrumbs_detail.html index 170c53a..48a7768 100644 --- a/templates/lib/breadcrumbs_detail.html +++ b/templates/lib/breadcrumbs_detail.html @@ -1,9 +1,9 @@ <ol class="bl" id="breadcrumbs" itemscope itemtype="http://schema.org/BreadcrumbList"> - <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> + <li class="nav-item" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> <a itemprop="item" href="/"><span itemprop="name">Home</span></a> → <meta itemprop="position" content="1" /> </li> - {% for crumb in breadcrumbs %}<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">{% if forloop.last %} + {% for crumb in breadcrumbs %}<li class="nav-item" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">{% if forloop.last %} <span itemprop="item"> <span itemprop="name" class="faint">{{crumb}}</span> </span> |