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

19 lines
601 B
Plaintext
Raw Normal View History

- provide(:title, generate_title("Public Timeline"))
2015-01-30 13:55:29 -08:00
= render 'static/mobile_nav'
2014-12-10 21:39:35 -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
2014-12-10 21:39:35 -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 }}
Load more
.visible-xs= render 'shared/links'