Show description and authors in EntryListHeader

This commit is contained in:
Tobias Fella 2020-06-03 00:30:12 +02:00
parent c6a59392e0
commit ca4a4de2e6
1 changed files with 10 additions and 2 deletions

View File

@ -46,7 +46,15 @@ RowLayout {
visible: page.feed.refreshing visible: page.feed.refreshing
} }
} }
Kirigami.Heading { ColumnLayout {
text: page.feed.name Kirigami.Heading {
text: page.feed.name
}
Controls.Label {
text: page.feed.description
}
Controls.Label {
text: page.feed.authors.length === 0 ? "" : " " + i18nc("by <author(s)>", "by") + " " + page.feed.authors[0].name
}
} }
} }