2023-08-17 14:22:40 -03:00
|
|
|
{{define "timeline"}}
|
|
|
|
{{range .Items}}
|
2024-08-31 23:23:22 -07:00
|
|
|
{{if .NotificationID}}
|
|
|
|
{{template "notification" .}}
|
|
|
|
{{else}}
|
|
|
|
{{template "tweet" .}}
|
|
|
|
{{end}}
|
2023-08-17 14:22:40 -03:00
|
|
|
{{end}}
|
2024-03-02 13:39:25 -08:00
|
|
|
|
2024-05-04 15:51:36 -07:00
|
|
|
<div class="show-more">
|
2024-04-05 15:49:19 -07:00
|
|
|
{{if .CursorBottom.CursorPosition.IsEnd}}
|
2024-05-04 15:51:36 -07:00
|
|
|
<label class="show-more__eof-label">End of feed</label>
|
2024-04-05 15:49:19 -07:00
|
|
|
{{else}}
|
2024-05-04 15:51:36 -07:00
|
|
|
<a class="show-more__button button"
|
2024-04-05 15:49:19 -07:00
|
|
|
hx-get="?{{(cursor_to_query_params .CursorBottom)}}"
|
2024-05-04 15:51:36 -07:00
|
|
|
hx-target=".show-more"
|
2024-04-05 15:49:19 -07:00
|
|
|
hx-swap="outerHTML"
|
|
|
|
>Show more</a>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2023-08-17 14:22:40 -03:00
|
|
|
{{end}}
|