@if (loading()) {
{{ 'XP.Explore.LoadingFeaturedSkills' | translate: { Default: 'Loading official picks...' } }}
} @else if (!visibleItems().length) {
{{ 'XP.Explore.NoFeaturedSkills' | translate: { Default: 'No official picks to display yet' } }}

{{ 'XP.Explore.NoFeaturedSkillsHint' | translate : { Default: 'You can continue configuring featured skills in skills-market.yaml. If configured items do not match the current repository index, this section stays empty automatically.' } }}

} @else {
@for (featured of visibleItems(); track featured.skill.id) {
@if (avatar(featured); as icon) { @switch (icon.type) { @case ('image') { } @case ('svg') { } @case ('emoji') { {{ icon.value }} } @default { } } } @else { }

{{ title(featured) }}

@if (featured.badge) { {{ featured.badge }} }

{{ description(featured) || ('XP.Explore.SkillDescriptionFallback' | translate: { Default: 'This skill does not include additional details yet.' }) }}

@for (tag of tags(featured); track tag) { {{ tag }} }
{{ featured.skill.stats?.downloads ?? '--' }} {{ 'XP.Explore.AddedTimes' | translate: { Default: 'adds' } }}
}
}