<% @profiles.each do |profile| %>
<%= link_to profile_path(profile) do %> <%= avatar_for(profile, clazz: 'card-img-top') %> <% end %>

<%= truncate(profile.name, length: 20) %>

joined <%= local_time(profile.created_at) %>

<% end %>
<%= link_to_next_page @profiles, 'More...', params: { cache: false }, remote: true, class: 'hidden', data: { disable_with: 'loading...', infinite_scroll: true } %>