% content_for "header" do %>
<%= translate(locale, "Subscriptions") %> - Invidious
<% end %>
<%= rendered "components/feed_menu" %>
<% if CONFIG.enable_user_notifications %>
<%= translate_count(locale, "subscriptions_unseen_notifs_count", notifications.size) %>
<% if !notifications.empty? %>
<% end %>
<% notifications.each do |item| %>
<%= rendered "components/item" %>
<% end %>
<% end %>
<% videos.each do |item| %>
<%= rendered "components/item" %>
<% end %>
<%=
IV::Frontend::Pagination.nav_numeric(locale,
base_url: base_url,
current_page: page,
show_next: ((videos.size + notifications.size) == max_results)
)
%>