% content_for "header" do %>
<%= translate(locale, "Subscriptions") %> - Invidious
<% end %>
<%= rendered "components/feed_menu" %>
<%= translate(locale, "`x` unseen notifications", "#{notifications.size}") %>
<% if !notifications.empty? %>
<% end %>
<% notifications.each_slice(4) do |slice| %>
<% slice.each do |item| %>
<%= rendered "components/item" %>
<% end %>
<% end %>
<% videos.each_slice(4) do |slice| %>
<% slice.each do |item| %>
<%= rendered "components/item" %>
<% end %>
<% end %>