Retrospring/app/views/user/questions.html.haml

19 lines
609 B
Plaintext
Raw Normal View History

2014-12-19 13:34:24 -08:00
.profile--header
.container.j2-page
.col-md-3.col-xs-12.col-sm-3
= render 'user/profile_info'
.hidden-xs= render 'shared/links'
.col-md-9.col-xs-12.col-sm-9
2014-12-19 15:03:07 -08:00
%h1.j2-lh.hidden-xs= @title
%h1.visible-xs= @title
2014-12-19 13:34:24 -08:00
#questions
2014-12-19 13:56:16 -08:00
- @questions.each do |q|
2014-12-19 13:57:08 -08:00
= render 'shared/question', q: q
2014-12-19 13:34:24 -08:00
#pagination= will_paginate @questions, renderer: BootstrapPagination::Rails, page_links: false
- if @questions.next_page
%button#load-more-btn.btn.btn-default{type: :button, data: { current_page: @questions.current_page }}
Load more
.visible-xs= render 'shared/links'