mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
14 lines
444 B
Plaintext
14 lines
444 B
Plaintext
<%# todo this looks like an unused partial %>
|
|
<% if content_list && content_list.any? %>
|
|
<div style="margin-top: -10px;" class="recent-activity">
|
|
<%=
|
|
render partial: 'content/list/list',
|
|
locals: {
|
|
title: defined?(title) ? title : 'Recent creations',
|
|
content_list: content_list,
|
|
content_type: Character # todo why is this hard-coded?
|
|
}
|
|
%>
|
|
</div>
|
|
<% end %>
|