From 317a4d642a68c4d938858424e11dbd40ca101e97 Mon Sep 17 00:00:00 2001 From: mcnesium Date: Wed, 27 Apr 2022 18:28:57 +0200 Subject: [PATCH 1/3] 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 }}
  • From 91c8598d330c1a0514b0b50856845bd0f8c8591f Mon Sep 17 00:00:00 2001 From: mcnesium Date: Tue, 17 May 2022 17:00:35 +0200 Subject: [PATCH 2/3] add title attribute with the author name not truncated --- template/templates/common/item_meta.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/templates/common/item_meta.html b/template/templates/common/item_meta.html index 6957eaa3..b5eadf43 100644 --- a/template/templates/common/item_meta.html +++ b/template/templates/common/item_meta.html @@ -6,7 +6,7 @@ {{ if .entry.Author }}
  • - {{ truncate .entry.Author 35 }} + {{ truncate .entry.Author 35 }}
  • {{ end }}
  • From 7dbfc555cc0a83e37920c89c234435e1600ce6ba Mon Sep 17 00:00:00 2001 From: mcnesium Date: Mon, 5 Jun 2023 16:12:37 +0200 Subject: [PATCH 3/3] replace em element with less semantic span --- template/templates/common/item_meta.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/templates/common/item_meta.html b/template/templates/common/item_meta.html index 98b6b952..8a090303 100644 --- a/template/templates/common/item_meta.html +++ b/template/templates/common/item_meta.html @@ -6,7 +6,7 @@
  • {{ if .entry.Author }}
  • - {{ truncate .entry.Author 35 }} + {{ truncate .entry.Author 35 }}
  • {{ end }}