14 lines
313 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}}
<p>End of feed</p>
{{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}}