mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-08 09:53:36 +01:00
18 lines
573 B
Text
18 lines
573 B
Text
|
.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
|
||
|
%h1.j2-lh= @title
|
||
|
#questions
|
||
|
- @questions.each do |a|
|
||
|
= render 'shared/answerbox', a: a
|
||
|
|
||
|
#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'
|