diff --git a/src/templates/src/feed.html b/src/templates/src/feed.html index d1574d9..f23eae3 100644 --- a/src/templates/src/feed.html +++ b/src/templates/src/feed.html @@ -23,12 +23,7 @@
- + {{ template "breadcrumbs.html" .Breadcrumbs }}
{{ .User.Name }} — {{ timehtml (relativedate .Date) .Date }} diff --git a/src/templates/src/include/thread_list_item.html b/src/templates/src/include/thread_list_item.html index 94f709b..15b3f56 100644 --- a/src/templates/src/include/thread_list_item.html +++ b/src/templates/src/include/thread_list_item.html @@ -7,12 +7,6 @@ It should be called with ThreadListItem.
-
{{ .FirstUser.Name }} — {{ timehtml (relativedate .FirstDate) .FirstDate }} diff --git a/src/templates/src/landing.html b/src/templates/src/landing.html index 65bf8f2..058c7ae 100644 --- a/src/templates/src/landing.html +++ b/src/templates/src/landing.html @@ -291,12 +291,6 @@
-
{{ .User.Name }} — {{ timehtml (relativedate .Date) .Date }} diff --git a/src/templates/types.go b/src/templates/types.go index 6f26b91..b38af0a 100644 --- a/src/templates/types.go +++ b/src/templates/types.go @@ -192,9 +192,8 @@ type PostListItem struct { // Data from thread_list_item.html type ThreadListItem struct { - Title string - Url string - Breadcrumbs []Breadcrumb + Title string + Url string FirstUser User FirstDate time.Time