Articles

@if (isLoading()) { } @if (error()) {
error_outline

{{ error() }}

} @if (!isLoading() && !error() && articles().length === 0) {
article

No articles found

Try refreshing or check your relays

} @if (!isLoading() && !error() && articles().length > 0) {
@for (tag of availableTags(); track tag) { }
@for (article of filteredArticles(); track article.id) { @if (article.imageUrl) { }
@if (!article.author.picture) { person }
{{ article.title }} {{ article.author.name || 'Anonymous' }} {{ article.publishedAt | ago }}

{{ article.summary }}

}
}