2018-11-20 17:18:12 +00:00
|
|
|
<% content_for "header" do %>
|
2019-02-08 16:34:32 +00:00
|
|
|
<meta name="description" content="<%= translate(locale, "An alternative front-end to YouTube") %>">
|
2019-05-02 01:03:39 +00:00
|
|
|
<title>
|
2019-10-21 00:42:18 +00:00
|
|
|
<% if env.get("preferences").as(Preferences).default_home != "Trending" %>
|
2019-05-02 01:03:39 +00:00
|
|
|
<%= translate(locale, "Trending") %> - Invidious
|
|
|
|
<% else %>
|
|
|
|
Invidious
|
|
|
|
<% end %>
|
|
|
|
</title>
|
2018-11-20 17:18:12 +00:00
|
|
|
<% end %>
|
2019-02-08 16:34:32 +00:00
|
|
|
|
2019-02-24 17:51:33 +00:00
|
|
|
<%= rendered "components/feed_menu" %>
|
2018-11-20 17:18:12 +00:00
|
|
|
|
2018-12-20 22:48:45 +00:00
|
|
|
<div class="pure-g h-box">
|
2019-04-15 00:04:10 +00:00
|
|
|
<div style="align-self:flex-end" class="pure-u-2-3">
|
|
|
|
<% if plid %>
|
2019-05-02 01:03:39 +00:00
|
|
|
<a href="/playlist?list=<%= plid %>">
|
|
|
|
<%= translate(locale, "View as playlist") %>
|
|
|
|
</a>
|
2019-04-15 00:04:10 +00:00
|
|
|
<% end %>
|
2018-12-20 22:48:45 +00:00
|
|
|
</div>
|
|
|
|
<div class="pure-u-1-3">
|
2019-05-02 01:03:39 +00:00
|
|
|
<div class="pure-g" style="text-align:right">
|
2018-12-20 22:48:45 +00:00
|
|
|
<% {"Default", "Music", "Gaming", "News", "Movies"}.each do |option| %>
|
|
|
|
<div class="pure-u-1 pure-md-1-3">
|
|
|
|
<% if trending_type == option %>
|
2019-05-02 01:03:39 +00:00
|
|
|
<b><%= translate(locale, option) %></b>
|
2018-12-20 22:48:45 +00:00
|
|
|
<% else %>
|
2019-05-02 01:03:39 +00:00
|
|
|
<a href="/feed/trending?type=<%= option %>®ion=<%= region %>">
|
|
|
|
<%= translate(locale, option) %>
|
|
|
|
</a>
|
2018-12-20 22:48:45 +00:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="h-box">
|
|
|
|
<hr>
|
|
|
|
</div>
|
|
|
|
|
2018-11-20 17:18:12 +00:00
|
|
|
<div class="pure-g">
|
2019-05-02 01:03:39 +00:00
|
|
|
<% trending.each_slice(4) do |slice| %>
|
|
|
|
<% slice.each do |item| %>
|
|
|
|
<%= rendered "components/item" %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
2018-11-20 17:18:12 +00:00
|
|
|
</div>
|