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

47 行
1.3 KiB
Plaintext

<% content_for "header" do %>
<title><%= author %> - Invidious</title>
<% end %>
<h1><%= author %></h1>
<% if user %>
<% if subscriptions.includes? ucid %>
<p>
<a href="/subscription_ajax?action_remove_subscriptions=1&c=<%= ucid %>">
<b>Unsubscribe from <%= author %></b>
</a>
</p>
<% else %>
<p>
<a href="/subscription_ajax?action_create_subscription_to_channel=1&c=<%= ucid %>">
<b>Subscribe to <%= author %></b>
</a>
</p>
<% end %>
<% else %>
<p>
<a href="/login">
<b>Login to subscribe to <%= author %></b>
</a>
</p>
<% end %>
<% videos.each_slice(4) do |slice| %>
<div class="pure-g">
<% slice.each do |video| %>
<%= rendered "components/video" %>
<% end %>
</div>
<% end %>
<div class="pure-g">
<div class="pure-u-1 pure-u-md-1-5">
<% if page > 2 %>
<a href="/channel/<%= ucid %>?page=<%= page - 1 %>">Previous page</a>
<% else %>
<a href="/channel/<%= ucid %>">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">
<a href="/channel/<%= ucid %>?page=<%= page + 1 %>">Next page</a>
</div>
</div>