2014-11-02 09:16:56 -08:00
|
|
|
- if user_signed_in?
|
2015-01-30 13:52:05 -08:00
|
|
|
= render 'static/mobile_nav'
|
2014-11-30 09:10:53 -08:00
|
|
|
.container.j2-page
|
2014-12-12 08:43:32 -08:00
|
|
|
.col-md-3.col-sm-3
|
2015-01-13 04:23:12 -08:00
|
|
|
= render 'shared/sidebar'
|
2015-02-05 06:17:15 -08:00
|
|
|
.col-md-9.col-xs-12.col-sm-9.j2-col-reset
|
2014-11-30 09:10:53 -08:00
|
|
|
= render 'layouts/messages'
|
2015-03-27 05:24:09 -07:00
|
|
|
.alert.alert-danger.alert-dismissible{role: "alert"}
|
|
|
|
%button.close{type: "button", "data-dismiss" => "alert"}
|
|
|
|
%span{"aria-hidden" => "true"} ×
|
2015-03-27 15:10:57 -07:00
|
|
|
Retrospring will shut down on 31st March 2015!
|
2014-12-08 05:14:13 -08:00
|
|
|
#timeline
|
|
|
|
- @timeline.each do |answer|
|
|
|
|
= render 'shared/answerbox', a: answer
|
|
|
|
|
|
|
|
#pagination= will_paginate @timeline, renderer: BootstrapPagination::Rails, page_links: false
|
|
|
|
|
|
|
|
- if @timeline.next_page
|
2014-12-08 07:01:27 -08:00
|
|
|
%button#load-more-btn.btn.btn-default{type: :button, data: { current_page: @timeline.current_page }}
|
2014-12-08 05:14:13 -08:00
|
|
|
Load more
|
2014-12-08 06:17:26 -08:00
|
|
|
.visible-xs= render 'shared/links'
|
2014-11-02 09:16:56 -08:00
|
|
|
- else
|
2015-01-30 13:52:05 -08:00
|
|
|
= render 'static/front'
|