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