@if (framed()) { } @else {
} @if (showHeader()) {

{{ title() }}

} @if (isLoading()) {
@for (i of [1, 2, 3, 4, 5]; track i) { }
} @else if (!data() || data().length === 0) {
  • {{ "common.empty.noDataTitle" | transloco }}
} @else {
    @for (item of data(); track item.name + ':' + $index) {
  • @if (showBrowserIcons()) { } @else if (showCountryFlags() && countryFlagUrl(item.name); as flagUrl) { } @else if (showLanguageFlags() && languageFlagUrl(item.name); as flagUrl) { } @if (linkInfo(item); as info) { @if (info.faviconUrl) { } {{ displayLabel(item) }} } @else { @if (isDeviceMetric()) { } {{ displayLabel(item) }} }
    {{ item.value | translocoDecimal }}
  • }
}