14 lines
339 B
Smarty
Raw Normal View History

2023-08-17 14:22:40 -03:00
{{define "timeline"}}
{{range .Items}}
{{template "tweet" .}}
{{end}}
{{if .CursorBottom.CursorPosition.IsEnd}}
2024-01-03 21:18:00 -06:00
<div class="eof-indicator">End of feed</div>
2023-08-17 14:22:40 -03:00
{{else}}
<button class="show-more"
2023-10-14 15:06:50 -03:00
hx-get="?{{(cursor_to_query_params .CursorBottom)}}"
2023-08-17 14:22:40 -03:00
hx-swap="outerHTML"
>Show more</button>
{{end}}
{{end}}