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

18 lines
638 B
Plaintext
Raw Normal View History

2015-05-10 10:48:47 -07:00
- provide(:title, "#{APP_CONFIG['site_name']}")
= render 'static/mobile_nav'
.container.j2-page
2020-04-19 14:12:23 -07:00
.row
.col-md-3.col-sm-4
= render 'shared/sidebar'
.col-md-9.col-xs-12.col-sm-8.j2-col-reset
= render 'layouts/messages'
#timeline
- @timeline.each do |answer|
= render 'shared/answerbox', a: answer
2020-04-19 14:12:23 -07:00
#pagination= will_paginate @timeline, renderer: BootstrapPagination::Rails, page_links: false
2020-04-19 14:12:23 -07:00
- 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'