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