I'm wondering what is the easiest way to build this kind of sidebar with Bootstrap 4.
To me, it looks like a custom component they built for the docs page, not being included in the framework. I'm not sure if I'm right.
<ul class="nav bd-sidenav">
<li class="active bd-sidenav-active">
<a href="/docs/4.0/getting-started/introduction/">
Introduction
</a>
</li>
<li>
<a href="/docs/4.0/getting-started/download/">
Download
</a>
</li>
...
</ul>
The closest I got was by creating something like this:
<ul class="nav">
<li class="w-100">
<a href="#">
Item 1
</a>
</li>
...
</ul>
But I think there should be a better way.
What is the right way to build such a sidebar/table of contents with Bootstrap 4?
