2018-03-25 09:08:35 +05:30
|
|
|
<% content_for "header" do %>
|
|
|
|
<title>Subscriptions - Invidious</title>
|
|
|
|
<% end %>
|
|
|
|
|
2018-07-25 06:04:49 +05:30
|
|
|
<div class="pure-g" style="padding:1em;">
|
|
|
|
<div class="pure-u-2-3">
|
2018-07-20 21:49:49 +05:30
|
|
|
<h3>
|
|
|
|
<a href="/subscription_manager">Manage subscriptions</a>
|
|
|
|
</h3>
|
|
|
|
</div>
|
2018-07-25 06:04:49 +05:30
|
|
|
<div class="pure-u-1-3" style="text-align:right;">
|
2018-07-20 21:49:49 +05:30
|
|
|
<h3>
|
|
|
|
<a href="/feed/private?token=<%= user.token %>"><i class="fas fa-rss-square"></i></a>
|
|
|
|
</h3>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-06 06:18:55 +05:30
|
|
|
|
2018-05-08 08:27:47 +05:30
|
|
|
<% if !notifications.empty? %>
|
2018-06-02 03:56:00 +05:30
|
|
|
<% notifications.each_slice(4) do |slice| %>
|
|
|
|
<div class="pure-g">
|
|
|
|
<% slice.each do |video| %>
|
|
|
|
<%= rendered "components/subscription_video" %>
|
|
|
|
<% end %>
|
2018-05-08 08:27:47 +05:30
|
|
|
</div>
|
|
|
|
<% end %>
|
2018-06-02 03:56:00 +05:30
|
|
|
<hr style="margin-left:1em; margin-right:1em;">
|
2018-05-08 08:27:47 +05:30
|
|
|
<% end %>
|
|
|
|
|
2018-03-25 09:08:35 +05:30
|
|
|
<% videos.each_slice(4) do |slice| %>
|
2018-06-02 03:56:00 +05:30
|
|
|
<div class="pure-g">
|
|
|
|
<% slice.each do |video| %>
|
|
|
|
<%= rendered "components/subscription_video" %>
|
|
|
|
<% end %>
|
2018-03-25 09:08:35 +05:30
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<div class="pure-g">
|
|
|
|
<div class="pure-u-1 pure-u-md-1-5">
|
2018-03-25 09:44:35 +05:30
|
|
|
<% if page > 2 %>
|
2018-07-20 21:49:49 +05:30
|
|
|
<a href="/feed/subscriptions?max_results=<%= max_results %>&page=<%= page - 1 %>">Previous page</a>
|
2018-03-25 09:08:35 +05:30
|
|
|
<% else %>
|
2018-07-20 21:49:49 +05:30
|
|
|
<a href="/feed/subscriptions?max_results=<%= max_results %>">Previous page</a>
|
2018-03-25 09:08:35 +05:30
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<div class="pure-u-1 pure-u-md-3-5"></div>
|
2018-03-25 09:44:35 +05:30
|
|
|
<div style="text-align:right;" class="pure-u-1 pure-u-md-1-5">
|
2018-07-20 21:49:49 +05:30
|
|
|
<a href="/feed/subscriptions?max_results=<%= max_results %>&page=<%= page + 1 %>">Next page</a>
|
2018-03-25 09:08:35 +05:30
|
|
|
</div>
|
|
|
|
</div>
|