Add home page
parent
3bd6f0151b
commit
a9cea62d5b
@ -1,3 +1,19 @@
|
|||||||
<% content_for "header" do %>
|
<% content_for "header" do %>
|
||||||
<title>Invidious</title>
|
<title>Invidious</title>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
|
<% videos.each_slice(4) do |slice| %>
|
||||||
|
<div class="pure-g">
|
||||||
|
<% slice.each do |video| %>
|
||||||
|
<% player_response = JSON.parse(video.info["player_response"]) %>
|
||||||
|
<div class="pure-u-1 pure-u-md-1-4">
|
||||||
|
<div style="margin: 1em;">
|
||||||
|
<a style="width:100%;" class="link" href="/watch?v=<%= video.id %>">
|
||||||
|
<img style="width:100%" src="<%= player_response["videoDetails"]["thumbnail"]["thumbnails"][0]["url"] %>"/>
|
||||||
|
<%= video.title %>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
Loading…
Reference in New Issue