<%# TODO: put this in more of a timeline design %>

Your recent worldbuilding activity
<% @recently_edited_pages.each do |page| %> <% action = page.created_at === page.updated_at ? 'Created' : 'Updated' %> <% klass = page.is_a?(ContentPage) ? content_class_from_name(page.page_type) : page.class %>
<%= link_to send("#{klass.name.downcase}_path", page.id), class: 'black-text' do %>
<%= image_tag page.random_image_including_private %>
<%= action %> <%= klass.icon %> <%= page.name %> <%= time_ago_in_words page.updated_at %> ago
<% end %>
<% end %>