{# Tag Navigation Sidebar Component Displays a list of all tags in the sidebar, similar to docs navigation. Highlights the current tag if viewing a tag page. Variables: - tags: List of tag objects with .name and .count (optional, will use popular_tags if not provided) - current_tag: Current tag name if viewing a tag page (optional) #} {% set all_tags = tags if tags is defined else popular_tags(limit=50) %} {% set current_tag_normalized = (current_tag | lower) if current_tag else '' %}