2018-03-24 22:38:35 -05:00
|
|
|
<% content_for "header" do %>
|
|
|
|
<title>Subscriptions - Invidious</title>
|
|
|
|
<% end %>
|
|
|
|
|
2018-07-29 09:47:32 -05:00
|
|
|
<div class="pure-g h-box">
|
2018-07-24 19:34:49 -05:00
|
|
|
<div class="pure-u-2-3">
|
2018-07-20 11:19:49 -05:00
|
|
|
<h3>
|
|
|
|
<a href="/subscription_manager">Manage subscriptions</a>
|
|
|
|
</h3>
|
|
|
|
</div>
|
2018-07-24 19:34:49 -05:00
|
|
|
<div class="pure-u-1-3" style="text-align:right;">
|
2018-07-20 11:19:49 -05:00
|
|
|
<h3>
|
2018-07-30 18:38:55 -05:00
|
|
|
<a href="/feed/private?token=<%= user.token %>"><i class="icon ion-logo-rss"></i></a>
|
2018-07-20 11:19:49 -05:00
|
|
|
</h3>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-05 19:48:55 -05:00
|
|
|
|
2018-08-06 13:48:02 -05:00
|
|
|
<center><%= notifications.size %> unseen notifications</center>
|
2018-08-30 16:52:29 -05:00
|
|
|
|
|
|
|
<% if !notifications.empty? %>
|
|
|
|
<div class="h-box">
|
|
|
|
<hr>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
|
2018-08-06 13:48:02 -05:00
|
|
|
<% notifications.each_slice(4) do |slice| %>
|
|
|
|
<div class="pure-g">
|
2018-09-20 09:36:09 -05:00
|
|
|
<% slice.each do |item| %>
|
|
|
|
<%= rendered "components/item" %>
|
2018-08-06 13:48:02 -05:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
2018-08-06 13:49:52 -05:00
|
|
|
|
|
|
|
<div class="h-box">
|
|
|
|
<hr>
|
|
|
|
</div>
|
2018-05-07 21:57:47 -05:00
|
|
|
|
2018-03-24 22:38:35 -05:00
|
|
|
<% videos.each_slice(4) do |slice| %>
|
2018-06-01 17:26:00 -05:00
|
|
|
<div class="pure-g">
|
2018-09-20 09:36:09 -05:00
|
|
|
<% slice.each do |item| %>
|
|
|
|
<%= rendered "components/item" %>
|
2018-06-01 17:26:00 -05:00
|
|
|
<% end %>
|
2018-03-24 22:38:35 -05:00
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<div class="pure-g">
|
|
|
|
<div class="pure-u-1 pure-u-md-1-5">
|
2018-08-14 19:15:33 -05:00
|
|
|
<% if page >= 2 %>
|
2018-07-20 11:19:49 -05:00
|
|
|
<a href="/feed/subscriptions?max_results=<%= max_results %>&page=<%= page - 1 %>">Previous page</a>
|
2018-03-24 22:38:35 -05:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<div class="pure-u-1 pure-u-md-3-5"></div>
|
2018-03-24 23:14:35 -05:00
|
|
|
<div style="text-align:right;" class="pure-u-1 pure-u-md-1-5">
|
2018-08-14 19:15:33 -05:00
|
|
|
<% if (videos.size + notifications.size) == max_results %>
|
|
|
|
<a href="/feed/subscriptions?max_results=<%= max_results %>&page=<%= page + 1 %>">Next page</a>
|
|
|
|
<% end %>
|
2018-03-24 22:38:35 -05:00
|
|
|
</div>
|
2018-08-17 11:04:38 -05:00
|
|
|
</div>
|