mirror of
				https://github.com/iv-org/invidious.git
				synced 2025-11-04 06:31:57 +00:00 
			
		
		
		
	Use same layout for search as for index
This commit is contained in:
		@@ -2,22 +2,19 @@
 | 
			
		||||
<title><%= query.size > 30 ? query[0,30].rstrip(".") + "..." : query %> - Invidious</title>
 | 
			
		||||
<% end %>
 | 
			
		||||
 | 
			
		||||
<% videos.each do |video| %>
 | 
			
		||||
<p style="padding:1em;">
 | 
			
		||||
    <div class="pure-g">
 | 
			
		||||
        <div class="pure-u-1 pure-u-md-1-5">
 | 
			
		||||
            <a class="link" href="<%= video["link"] %>">
 | 
			
		||||
                <img style="width:100%" alt="thumbnail" src="<%= video["thumbnail"] %>">
 | 
			
		||||
            </a>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="pure-u-1 pure-u-md-4-5">
 | 
			
		||||
            <a style="display:block; width:100%; height:100%" class="link" href="<%= video["link"] %>">
 | 
			
		||||
<% videos.each_slice(4) do |slice| %>
 | 
			
		||||
<div class="pure-g">
 | 
			
		||||
<% slice.each do |video| %>
 | 
			
		||||
    <div class="pure-u-1 pure-u-md-1-4">
 | 
			
		||||
        <div style="margin: 1em;">
 | 
			
		||||
            <a style="width:100%;" class="link" href="/watch?v=<%= video["link"] %>">
 | 
			
		||||
                <img style="width:100%" src="<%= video["thumbnail"] %>"/>
 | 
			
		||||
                <%= video["title"] %>
 | 
			
		||||
            </a>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    </a>
 | 
			
		||||
</p>
 | 
			
		||||
    <% end %>
 | 
			
		||||
</div>
 | 
			
		||||
<% end %>
 | 
			
		||||
 | 
			
		||||
<p style="text-align: right">
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user