#feed-comments-list.icp .infinitescroll .infinitescroll-page - @feeds.each do |feed| .col-xs-12.infinitescroll-element.mt20 .group-feed .col-sm-1.center .feed-owner.pull-right = image_tag feed.user.image_url(:thumb), alt: feed.user.name .col-sm-11 .feed-subject = feed.subject .feed-body = truncate(simple_format(feed.body), length: 200) do = feed.body .feed-time .livetimestamp data-time-iso8601=feed.created_at.to_s(:iso8601) data-time-format='dddd, MMMM Do YYYY, h:mm:ss a' .comments-count = t('.comments_count', count: feed.children.count) .comment-box id="comments-#{feed.id}" = feed.children.find_each do |comment_thread| .bg-grey.block .col-sm-1.pt5 = image_tag comment_thread.user.image_url(:thumb), alt: comment_thread.user.name, title: comment_thread.user.name .col-sm-11.fs10.pt10.pl0.semibold.lh12 = comment_thread.body .comment-time.pl75.ptb10 .livetimestamp.inline data-time-iso8601=comment_thread.created_at.to_s(:iso8601) data-time-format='dddd, MMMM Do YYYY, h:mm:ss a' .clearfix .clearfix .bg-grey.p10 .col-sm-1.pt5.pl5 = image_tag current_user.image_url(:thumb), alt: current_user.name .col-sm-11.plr0.new-comment-form.relative = render 'comments/form', comment: feed.children.build .clearfix = paginate @feeds