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

78 行
2.2 KiB
Plaintext
Raw 通常表示 履歴

2018-06-03 09:52:58 +09:00
<% content_for "header" do %>
<title><%= author %> - Invidious</title>
<% end %>
<div class="pure-g h-box">
2018-07-28 22:24:53 +09:00
<div class="pure-u-2-3">
<h3><%= author %></h3>
</div>
<div class="pure-u-1-3" style="text-align:right;">
<h3>
<a href="/feed/channel/<%= ucid %>"><i class="icon ion-logo-rss"></i></a>
2018-07-28 22:24:53 +09:00
</h3>
</div>
</div>
<div class="h-box">
<% sub_count_text = number_to_short_text(sub_count) %>
<%= rendered "components/subscribe_widget" %>
</div>
2018-07-28 22:24:53 +09:00
2018-11-14 10:04:25 +09:00
<div class="pure-g h-box">
<div class="pure-u-1-3">
2018-12-21 06:32:09 +09:00
<a href="https://www.youtube.com/channel/<%= ucid %>"><%= translate(locale, "View channel on YouTube") %></a>
2018-11-14 10:04:25 +09:00
</div>
<div class="pure-u-1-3">
</div>
<div class="pure-u-1-3">
<div class="pure-g" style="text-align:right;">
<% {"newest", "oldest", "popular"}.each do |sort| %>
2018-11-16 08:05:29 +09:00
<div class="pure-u-1 pure-md-1-3">
2018-11-14 10:04:25 +09:00
<% if sort_by == sort %>
2018-12-21 06:32:09 +09:00
<b><%= translate(locale, sort) %></b>
2018-11-14 10:04:25 +09:00
<% else %>
<a href="/channel/<%= ucid %>?page=<%= page %>&sort_by=<%= sort %>">
2018-12-21 06:32:09 +09:00
<%= translate(locale, sort) %>
2018-11-14 10:04:25 +09:00
</a>
<% end %>
</div>
<% end %>
</div>
</div>
</div>
<div class="h-box">
<hr>
</div>
2018-08-18 00:57:08 +09:00
2018-06-03 09:52:58 +09:00
<div class="pure-g">
<% items.each_slice(4) do |slice| %>
<% slice.each do |item| %>
<%= rendered "components/item" %>
2018-06-03 09:52:58 +09:00
<% end %>
<% end %>
2018-11-20 09:43:06 +09:00
</div>
2018-06-03 09:52:58 +09:00
2018-08-05 13:07:38 +09:00
<div class="pure-g h-box">
2018-06-03 09:52:58 +09:00
<div class="pure-u-1 pure-u-md-1-5">
<% if page >= 2 %>
2018-12-21 06:32:09 +09:00
<a href="/channel/<%= ucid %>?page=<%= page - 1 %><% if sort_by != "newest" %>&sort_by=<%= sort_by %><% end %>">
<%= translate(locale, "Previous page") %>
</a>
2018-06-03 09:52:58 +09:00
<% end %>
</div>
<div class="pure-u-1 pure-u-md-3-5"></div>
<div style="text-align:right;" class="pure-u-1 pure-u-md-1-5">
<% if count == 60 %>
2018-12-21 06:32:09 +09:00
<a href="/channel/<%= ucid %>?page=<%= page + 1 %><% if sort_by != "newest" %>&sort_by=<%= sort_by %><% end %>">
<%= translate(locale, "Next page") %>
</a>
<% end %>
2018-06-03 09:52:58 +09:00
</div>
2018-08-18 01:04:38 +09:00
</div>
<script>
<% sub_count_text = number_to_short_text(sub_count) %>
<%= rendered "components/subscribe_widget_script" %>
2018-11-02 22:09:28 +09:00
</script>