mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 20:56:04 +01:00
12 lines
No EOL
413 B
Text
12 lines
No EOL
413 B
Text
#timeline
|
|
- @timeline.each do |answer|
|
|
= render 'shared/answerbox', a: answer
|
|
|
|
= render 'shared/cursored_pagination_dummy', more_data_available: @more_data_available, last_id: @timeline_last_id
|
|
|
|
- if @more_data_available
|
|
%button#load-more-btn.btn.btn-default{type: :button, data: { last_id: @timeline_last_id }}
|
|
Load more
|
|
|
|
- provide(:title, "#{APP_CONFIG['site_name']}")
|
|
- parent_layout "feed" |