invidious/src/invidious/views/playlists.ecr

99 行
3.3 KiB
Plaintext
Raw 通常表示 履歴

2019-03-04 01:54:23 +09:00
<% content_for "header" do %>
<title><%= channel.author %> - Invidious</title>
2019-03-04 01:54:23 +09:00
<% end %>
<% if channel.banner %>
<div class="h-box">
2019-07-03 08:53:19 +09:00
<img style="width:100%" src="/ggpht<%= URI.parse(channel.banner.not_nil!.gsub("=w1060-", "=w1280-")).full_path %>">
</div>
2019-06-29 11:00:28 +09:00
<div class="h-box">
<hr>
</div>
<% end %>
2019-06-29 11:00:28 +09:00
2019-03-04 01:54:23 +09:00
<div class="pure-g h-box">
<div class="pure-u-2-3">
2019-06-29 11:00:28 +09:00
<div class="channel-profile">
2019-07-01 02:31:16 +09:00
<img src="/ggpht<%= URI.parse(channel.author_thumbnail).full_path %>">
2019-06-29 11:00:28 +09:00
<span><%= channel.author %></span>
</div>
2019-03-04 01:54:23 +09:00
</div>
2019-05-02 10:03:39 +09:00
<div class="pure-u-1-3" style="text-align:right">
2019-03-04 01:54:23 +09:00
<h3>
<a href="/feed/channel/<%= channel.ucid %>"><i class="icon ion-logo-rss"></i></a>
2019-03-04 01:54:23 +09:00
</h3>
</div>
</div>
2019-08-01 09:29:16 +09:00
<div class="h-box">
2020-12-07 21:10:00 +09:00
<p><span style="white-space:pre-wrap"><%= XML.parse_html(channel.description_html).xpath_node(%q(.//pre)).try &.content if !channel.description_html.empty? %></span></p>
2019-08-01 09:29:16 +09:00
</div>
2019-03-04 01:54:23 +09:00
<div class="h-box">
<% ucid = channel.ucid %>
<% author = channel.author %>
2019-09-13 10:09:23 +09:00
<% sub_count_text = number_to_short_text(channel.sub_count) %>
2019-05-02 10:03:39 +09:00
<%= rendered "components/subscribe_widget" %>
2019-03-04 01:54:23 +09:00
</div>
<div class="pure-g h-box">
<div class="pure-g pure-u-1-3">
<div class="pure-u-1 pure-md-1-3">
2019-07-09 23:31:04 +09:00
<a href="https://www.youtube.com/channel/<%= channel.ucid %>/playlists"><%= translate(locale, "View channel on YouTube") %></a>
2019-03-04 01:54:23 +09:00
</div>
<div class="pure-u-1 pure-md-1-3">
<a href="/channel/<%= channel.ucid %>"><%= translate(locale, "Videos") %></a>
2019-03-04 01:54:23 +09:00
</div>
<div class="pure-u-1 pure-md-1-3">
<% if !channel.auto_generated %>
2019-05-02 10:03:39 +09:00
<b><%= translate(locale, "Playlists") %></b>
2019-03-04 01:54:23 +09:00
<% end %>
</div>
2019-07-09 23:31:04 +09:00
<div class="pure-u-1 pure-md-1-3">
<% if channel.tabs.includes? "community" %>
<a href="/channel/<%= channel.ucid %>/community"><%= translate(locale, "Community") %></a>
<% end %>
</div>
2019-03-04 01:54:23 +09:00
</div>
2019-05-02 10:03:39 +09:00
<div class="pure-u-1-3"></div>
2019-03-04 01:54:23 +09:00
<div class="pure-u-1-3">
2019-05-02 10:03:39 +09:00
<div class="pure-g" style="text-align:right">
<% {"last", "oldest", "newest"}.each do |sort| %>
<div class="pure-u-1 pure-md-1-3">
<% if sort_by == sort %>
<b><%= translate(locale, sort) %></b>
<% else %>
<a href="/channel/<%= channel.ucid %>/playlists?sort_by=<%= sort %>">
2019-05-02 10:03:39 +09:00
<%= translate(locale, sort) %>
</a>
<% end %>
</div>
<% end %>
2019-03-04 01:54:23 +09:00
</div>
</div>
</div>
<div class="h-box">
<hr>
</div>
<div class="pure-g">
2019-05-02 10:03:39 +09:00
<% items.each_slice(4) do |slice| %>
<% slice.each do |item| %>
<%= rendered "components/item" %>
<% end %>
2019-03-04 01:54:23 +09:00
<% end %>
</div>
<div class="pure-g h-box">
<div class="pure-u-1 pure-u-md-4-5"></div>
2019-05-02 10:03:39 +09:00
<div class="pure-u-1 pure-u-lg-1-5" style="text-align:right">
<% if continuation %>
2020-03-11 00:25:32 +09:00
<a href="/channel/<%= channel.ucid %>/playlists?continuation=<%= continuation %><% if sort_by != "last" %>&sort_by=<%= HTML.escape(sort_by) %><% end %>">
2019-05-02 10:03:39 +09:00
<%= translate(locale, "Next page") %>
</a>
<% end %>
2019-03-04 01:54:23 +09:00
</div>
</div>