Account nav item
The account_nav_item component creates navigation items
specifically for account-related navigation menus. Account navigation usually wrapped in the account component
and may look broken outside of it.
{%- call ui.util.call(show_example) -%}
{%- raw %}
{%- call ui.util.call(ui.account_nav) -%}
{{ ui.account_nav_item("First", href="") }}
{{ ui.account_nav_item("Second", href="", active=true) }}
{{ ui.account_nav_item("Third", href="") }}
{%- endcall %}
{%- call ui.util.call(ui.account) -%}
{%- call ui.util.call(ui.account_nav) -%}
{{ ui.account_nav_item("First", href="") }}
{{ ui.account_nav_item("Second", href="", active=true) }}
{{ ui.account_nav_item("Third", href="") }}
{%- endcall %}
{%- endcall %}
{%- endraw %}
{%- endcall %}