diff --git a/app/controllers/timelines_controller.rb b/app/controllers/timelines_controller.rb index fa94f0d5..f93b8be8 100644 --- a/app/controllers/timelines_controller.rb +++ b/app/controllers/timelines_controller.rb @@ -45,6 +45,14 @@ class TimelinesController < ApplicationController # if params.key?(:favorite_only) # @timelines.select!(&:favorite?) # end + + + # New style, using content#index view (we can wipe unused stuff from above once this is finalized) + @content_type_class = Timeline + @content_type_name = @content_type_class.name + @content = @timelines + @folders = [] + render 'content/index' end def show diff --git a/app/views/timelines/index.html.erb b/app/views/timelines/index.html.erb index 34d35819..b0ff8950 100644 --- a/app/views/timelines/index.html.erb +++ b/app/views/timelines/index.html.erb @@ -263,7 +263,7 @@