15 lines
477 B
Plaintext
Raw Normal View History

2018-12-20 15:32:09 -06:00
<% content_for "header" do %>
<meta name="description" content="<%= translate(locale, "An alternative front-end to YouTube") %>">
2019-03-01 16:06:45 -06:00
<title><% if config.default_home != "Popular" %><%= translate(locale, "Popular") %> - <% end %>Invidious</title>
2018-12-20 15:32:09 -06:00
<% end %>
2019-02-24 11:51:33 -06:00
<%= rendered "components/feed_menu" %>
2018-11-26 10:50:34 -06:00
<div class="pure-g">
<% popular_videos.each_slice(4) do |slice| %>
<% slice.each do |item| %>
<%= rendered "components/item" %>
<% end %>
<% end %>
</div>