Where is the breadcrumb bric?

Unfortunately there isn’t one. Have to do it manually for now.

I found a way to create breadcrumbs is to use code widget bric.
After create the bric, paste the bootstrap breadcrumb code snippet into the html window and vollia.

Try paste this

<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Library</li>
</ol>
</nav>

1 Like