14 lines
313 B
Smarty
14 lines
313 B
Smarty
{{define "timeline"}}
|
|
{{range .Items}}
|
|
{{template "tweet" .}}
|
|
{{end}}
|
|
{{if .CursorBottom.CursorPosition.IsEnd}}
|
|
<p>End of feed</p>
|
|
{{else}}
|
|
<button class="show-more"
|
|
hx-get="?{{(cursor_to_query_params .CursorBottom)}}"
|
|
hx-swap="outerHTML"
|
|
>Show more</button>
|
|
{{end}}
|
|
{{end}}
|