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

58 lines
1.7 KiB
Plaintext
Raw Normal View History

2018-06-03 00:52:58 +00:00
<% content_for "header" do %>
<title><%= author %> - Invidious</title>
<% end %>
<div class="pure-g h-box">
2018-07-28 13:24:53 +00: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 13:24:53 +00:00
</h3>
</div>
</div>
<p class="h-box">
2018-07-16 16:24:24 +00:00
<% if user %>
2018-06-15 00:06:22 +00:00
<% if subscriptions.includes? ucid %>
2018-08-17 15:19:20 +00:00
<a href="/subscription_ajax?action_remove_subscriptions=1&c=<%= ucid %>&referer=<%= env.get("current_page") %>">
<b>Unsubscribe from <%= author %></b>
</a>
2018-06-15 00:06:22 +00:00
<% else %>
2018-08-17 15:19:20 +00:00
<a href="/subscription_ajax?action_create_subscription_to_channel=1&c=<%= ucid %>&referer=<%= env.get("current_page") %>">
<b>Subscribe to <%= author %></b>
</a>
2018-06-15 00:06:22 +00:00
<% end %>
<% else %>
2018-08-17 15:19:20 +00:00
<a href="/login?referer=<%= env.get("current_page") %>">
<b>Login to subscribe to <%= author %></b>
</a>
2018-06-15 00:06:22 +00:00
<% end %>
</p>
2018-07-28 13:24:53 +00:00
2018-08-17 15:57:08 +00:00
<p class="h-box">
<a href="https://www.youtube.com/channel/<%= ucid %>">View channel on YouTube</a>
</p>
2018-06-03 00:52:58 +00:00
<% videos.each_slice(4) do |slice| %>
<div class="pure-g">
<% slice.each do |video| %>
<%= rendered "components/video" %>
<% end %>
</div>
<% end %>
2018-08-05 04:07:38 +00:00
<div class="pure-g h-box">
2018-06-03 00:52:58 +00:00
<div class="pure-u-1 pure-u-md-1-5">
<% if page >= 2 %>
2018-06-03 00:52:58 +00:00
<a href="/channel/<%= ucid %>?page=<%= page - 1 %>">Previous page</a>
<% 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 videos.size == 100 %>
2018-06-03 00:52:58 +00:00
<a href="/channel/<%= ucid %>?page=<%= page + 1 %>">Next page</a>
<% end %>
2018-06-03 00:52:58 +00:00
</div>
</div>