{# Macro sidebar_link Uso: {% from "dg/components/sidebar_link.html" import sidebar_link %} {{ sidebar_link("Dashboard", href="/", icon_name="layout-dashboard", active=(request.url.path == "/")) }} #} {% from "dg/components/icon.html" import icon %} {% macro sidebar_link(label, href="/", icon_name="", active=false, badge_count=none) %} {%- if icon_name %}{{ icon(icon_name, class="w-4 h-4 shrink-0") }}{% endif %} {{ label }} {%- if badge_count is not none %} {{ badge_count }} {%- endif %} {%- endmacro %}