22 lines
528 B
Smarty
Raw Normal View History

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
<div class="show-more">
{{if .CursorBottom.CursorPosition.IsEnd}}
<label class="show-more__eof-label">End of feed</label>
{{else}}
<a class="show-more__button button"
hx-get="?{{(cursor_to_query_params .CursorBottom)}}"
hx-target=".show-more"
hx-swap="outerHTML"
>Show more</a>
{{end}}
</div>
2023-08-17 14:22:40 -03:00
{{end}}