Sidebar nav item
The sidebar_nav_item usually requires wrapper with sidebar
classes, like secondary. Additionally,
it often supports title parameter
that can be used to add a title to the navigation section.
{%- call ui.util.call(show_example) -%}
{%- raw %}
{%- call ui.util.call(ui.sidebar_nav, title="Sidebar navigation") -%}
{{ ui.sidebar_nav_item("First", href="") }}
{{ ui.sidebar_nav_item("Second", href="", active=true) }}
{{ ui.sidebar_nav_item("Third", href="") }}
{%- endcall %}
{%- endraw %}
{%- endcall %}