mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 11:00:32 +00:00
11 lines
409 B
HTML
11 lines
409 B
HTML
<div class="col-12 col-md-3 col-xl-2 bd-sidebar">
|
|
|
|
<nav class="collapse bd-links" id = "sidebar">
|
|
{% for child in site.data.navigation %}
|
|
<div class="bd-toc-item">
|
|
{% assign childid = ("submenu_" | append: forloop.index) %}
|
|
{% include f_sidebar_nav.html item=child id=childid %}
|
|
</div>
|
|
{% endfor %}
|
|
</nav>
|
|
</div> |