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

50 行
1.4 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-05-02 10:03:39 +09:00
<title>
<% if env.get("preferences").as(Preferences).default_home != "Trending" %>
2019-05-02 10:03:39 +09:00
<%= translate(locale, "Trending") %> - Invidious
<% else %>
Invidious
<% end %>
</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 style="align-self:flex-end" class="pure-u-2-3">
<% if plid %>
2019-05-02 10:03:39 +09:00
<a href="/playlist?list=<%= plid %>">
<%= translate(locale, "View as playlist") %>
</a>
<% end %>
2018-12-21 07:48:45 +09:00
</div>
<div class="pure-u-1-3">
2019-05-02 10:03:39 +09:00
<div class="pure-g" style="text-align:right">
2021-03-28 17:25:04 +09:00
<% {"Default", "Music", "Gaming", "Movies"}.each do |option| %>
2018-12-21 07:48:45 +09:00
<div class="pure-u-1 pure-md-1-3">
<% if trending_type == option %>
2019-05-02 10:03:39 +09:00
<b><%= translate(locale, option) %></b>
2018-12-21 07:48:45 +09:00
<% else %>
2019-05-02 10:03:39 +09:00
<a href="/feed/trending?type=<%= option %>&region=<%= region %>">
<%= translate(locale, option) %>
</a>
2018-12-21 07:48:45 +09:00
<% 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 do |item| %>
<%= rendered "components/item" %>
<% end %>
2018-11-21 02:18:12 +09:00
</div>
2023-02-20 04:41:18 +09:00
<script src="/js/watched_indicator.js"></script>