mirror of
https://github.com/tabler/tabler.git
synced 2025-12-21 17:34:25 +04:00
17 lines
1.0 KiB
HTML
17 lines
1.0 KiB
HTML
{% assign breakpoint = include.breakpoint | default: 'lg' %}
|
|
|
|
<aside class="navbar navbar-vertical{% if include.end %} navbar-end{% endif %} navbar-expand-{{ breakpoint }}{% if include.transparent %} navbar-transparent{% endif %}{% if include.background %} bg-{{ include.background }}{% endif %}{% if include.class %} {{ include.class }}{% endif %}"{% if include.background-color %} style="background: {{ include.background-color }}"{% endif %}{% if include.dark %} data-bs-theme="dark"{% endif %}>
|
|
<div class="container-fluid">
|
|
{% include "layout/navbar-toggler.html" target="sidebar-menu" %}
|
|
|
|
{% unless include.hide-brand %}
|
|
{% include "layout/navbar-logo.html" breakpoint=breakpoint header=true %}
|
|
{% endunless %}
|
|
|
|
{% include "layout/navbar-side.html" class="d-lg-none" hide-username=include.hide-username person-id=include.person-id breakpoint=breakpoint %}
|
|
|
|
<div class="collapse navbar-collapse" id="sidebar-menu">
|
|
{% include "layout/navbar-menu.html" auto-open=true class="pt-lg-3" keep-open=true %}
|
|
</div>
|
|
</div>
|
|
</aside> |