Gefundene Quellen ({sources.length})
{#if loading}
{#each [1, 2, 3, 4] as _}
{/each}
{:else if error}
{:else if sources.length === 0}
Noch keine Quellen gefunden.
{:else}
{#each sources as source, i}
{domainFavicon(source.domain)}
{source.title}
{source.url}
{#if source.domain}
{source.domain}
{/if}
{#if source.source_type}
{sourceTypeLabel(source.source_type)}
{/if}
{#if source.independence_score !== undefined}
Unabhängigkeit: {(source.independence_score * 100).toFixed(0)}%
{/if}
{#if source.id}
ID: {source.id}
{/if}
{/each}
{/if}