2018-06-03 00:52:58 +00:00
|
|
|
<% content_for "header" do %>
|
|
|
|
<title><%= author %> - Invidious</title>
|
|
|
|
<% end %>
|
|
|
|
|
2018-07-28 13:24:53 +00:00
|
|
|
<div class="pure-g" style="padding:1em;">
|
|
|
|
<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="fas fa-rss-square"></i></a>
|
|
|
|
</h3>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2018-07-16 16:24:24 +00:00
|
|
|
<% if user %>
|
2018-06-15 00:06:22 +00:00
|
|
|
<% 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 %>
|
2018-07-28 13:24:53 +00:00
|
|
|
|
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 %>
|
|
|
|
|
|
|
|
<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>
|