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

20 lines
780 B
Plaintext
Raw Normal View History

2015-05-10 10:48:47 -07:00
- provide(:title, "#{@user.display_name.blank? ? "@#{@user.screen_name}'s" : "#{@user.display_name}'s"} questions | #{APP_CONFIG['site_name']}")
2014-12-19 13:34:24 -08:00
.profile--header
.container.j2-page
2015-02-05 06:20:41 -08:00
.col-md-3.col-xs-12.col-sm-4.j2-col-reset
2014-12-19 13:34:24 -08:00
= render 'user/profile_info'
.hidden-xs= render 'shared/links'
2015-02-05 06:20:41 -08:00
.col-md-9.col-xs-12.col-sm-8.j2-col-reset
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'