mirror of
				https://github.com/iv-org/invidious.git
				synced 2025-11-04 06:31:57 +00:00 
			
		
		
		
	Add Previous/Next page buttons at the top of the page
This commit is contained in:
		@@ -2,6 +2,24 @@
 | 
			
		||||
<title><%= search_query.not_nil!.size > 30 ? HTML.escape(query.not_nil![0,30].rstrip(".") + "...") : HTML.escape(query.not_nil!) %> - Invidious</title>
 | 
			
		||||
<% end %>
 | 
			
		||||
 | 
			
		||||
<div class="pure-g h-box v-box">
 | 
			
		||||
    <div class="pure-u-1 pure-u-lg-1-5">
 | 
			
		||||
        <% if page > 1 %>
 | 
			
		||||
            <a href="/search?q=<%= HTML.escape(query.not_nil!) %>&page=<%= page - 1 %>">
 | 
			
		||||
                <%= translate(locale, "Previous page") %>
 | 
			
		||||
            </a>
 | 
			
		||||
        <% end %>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="pure-u-1 pure-u-lg-3-5"></div>
 | 
			
		||||
    <div class="pure-u-1 pure-u-lg-1-5" style="text-align:right">
 | 
			
		||||
        <% if count >= 20 %>
 | 
			
		||||
            <a href="/search?q=<%= HTML.escape(query.not_nil!) %>&page=<%= page + 1 %>">
 | 
			
		||||
                <%= translate(locale, "Next page") %>
 | 
			
		||||
            </a>
 | 
			
		||||
        <% end %>
 | 
			
		||||
    </div>
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
<div class="pure-g">
 | 
			
		||||
    <% videos.each_slice(4) do |slice| %>
 | 
			
		||||
        <% slice.each do |item| %>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user