mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
15 lines
458 B
Plaintext
15 lines
458 B
Plaintext
<% content_to_show = Rails.application.config.content_types[:all_non_universe] + [Timeline] %>
|
|
|
|
<% content_to_show.each do |content_type| %>
|
|
<%
|
|
list = @content.send(content_type.name.downcase.pluralize)
|
|
next if list.empty?
|
|
|
|
@sidelinks_in_this_universe_count += list.count
|
|
%>
|
|
|
|
<%= render partial: 'content/cards/in_universe_content_list', locals: {
|
|
content_type: content_type.name.downcase.to_sym,
|
|
content_list: list
|
|
} %>
|
|
<% end %> |