master
 1<div class="card-columns">
 2  <% @profiles.each do |profile| %>
 3    <div class="card">
 4      <%= link_to profile_path(profile) do %>
 5        <%= avatar_for(profile, clazz: 'card-img-top') %>
 6      <% end %>
 7      <div class="card-body">
 8        <h4 class="card-title"><%= truncate(profile.name, length: 20) %></h4>
 9        <p class="card-text"><small class="text-muted">joined <%= local_time(profile.created_at) %></small></p>
10      </div>
11    </div>
12  <% end %>
13</div>
14<div id='more-button-row' class="row">
15  <%= link_to_next_page @profiles, 'More...', params: { cache: false }, remote: true, class: 'hidden', data: { disable_with: 'loading...', infinite_scroll: true } %>
16</div>