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

19 lines
615 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
#pagination= will_paginate @timeline, renderer: BootstrapPagination::Rails, page_links: false
- if @timeline.next_page
%button#load-more-btn.btn.btn-default{type: :button, data: { current_page: @timeline.current_page }}
= t 'views.actions.load'
2015-01-13 04:23:12 -08:00
.visible-xs= render 'shared/links'