From 317a4d642a68c4d938858424e11dbd40ca101e97 Mon Sep 17 00:00:00 2001 From: mcnesium Date: Wed, 27 Apr 2022 18:28:57 +0200 Subject: [PATCH] Show author of a post in the feed list IMHO it is interesting to see the author of an entry right in the list. Truncated to 35 characters as the feed title is. --- template/templates/common/item_meta.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/template/templates/common/item_meta.html b/template/templates/common/item_meta.html index a78a8378..6957eaa3 100644 --- a/template/templates/common/item_meta.html +++ b/template/templates/common/item_meta.html @@ -4,6 +4,11 @@
  • {{ truncate .entry.Feed.Title 35 }}
  • + {{ if .entry.Author }} +
  • + {{ truncate .entry.Author 35 }} +
  • + {{ end }}