invidious-mod/src/invidious/views/trending.ecr

41 行
1.3 KiB
Plaintext
Raw 通常表示 履歴

2018-11-21 02:18:12 +09:00
<% content_for "header" do %>
<meta name="description" content="<%= translate(locale, "An alternative front-end to YouTube") %>">
2019-03-02 07:06:45 +09:00
<title><% if config.default_home != "Trending" %><%= translate(locale, "Trending") %> - <% end %>Invidious</title>
2018-11-21 02:18:12 +09:00
<% end %>
2019-02-25 02:51:33 +09:00
<%= rendered "components/feed_menu" %>
2018-11-21 02:18:12 +09:00
2018-12-21 07:48:45 +09:00
<div class="pure-g h-box">
<div class="pure-u-2-3">
<form class="pure-form pure-form-aligned" action="/feed/trending" method="get">
</form>
</div>
<div class="pure-u-1-3">
<div class="pure-g" style="text-align:right;">
<% {"Default", "Music", "Gaming", "News", "Movies"}.each do |option| %>
<div class="pure-u-1 pure-md-1-3">
<% if trending_type == option %>
<b><%= translate(locale, option) %></b>
<% else %>
<a href="/feed/trending?type=<%= option %>&region=<%= region %>">
<%= translate(locale, option) %>
</a>
<% end %>
</div>
<% end %>
</div>
</div>
</div>
<div class="h-box">
<hr>
</div>
2018-11-21 02:18:12 +09:00
<div class="pure-g">
<% trending.each_slice(4) do |slice| %>
<% slice.each do |item| %>
<%= rendered "components/item" %>
<% end %>
<% end %>
</div>