<%= turbo_stream.append "posts" do %>
<%= render partial: "posts/post", collection: @posts %>
<% end %>
<% unless @pagy.page == @pagy.last %>
<%= turbo_stream.replace "pagination" do %>
<%= turbo_frame_tag "pagination", src: posts_path(page: @pagy.next, format: :turbo_stream), loading: :lazy %>
<% end %>
<% end %><%= link_to 'Posts', root_path(only_path: true), class: 'text-decoration-none text-reset fs-2' %>