Retrospring/app/views/group/index.html.haml

19 lines
627 B
Plaintext
Raw Normal View History

- provide(:title, group_title(@group))
2015-01-30 13:55:29 -08:00
= render 'static/mobile_nav'
2015-01-13 04:23:12 -08:00
.container.j2-page
2015-08-28 07:29:02 -07:00
.col-md-3.col-sm-4
2015-01-13 04:23:12 -08:00
= render 'shared/sidebar'
2015-08-28 07:29:02 -07:00
.col-md-9.col-xs-12.col-sm-8.j2-col-reset
2015-01-13 04:23:12 -08:00
= render 'layouts/messages'
#timeline
- @timeline.each do |answer|
= render 'shared/answerbox', a: answer
= render 'shared/cursored_pagination_dummy', more_data_available: @more_data_available, last_id: @timeline_last_id
2015-01-13 04:23:12 -08:00
- if @more_data_available
%button#load-more-btn.btn.btn-default{type: :button, data: { last_id: @timeline_last_id }}
= t 'views.actions.load'
2015-01-13 04:23:12 -08:00
.visible-xs= render 'shared/links'