mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
20 lines
747 B
Text
20 lines
747 B
Text
<% content_for "header" do %>
|
|
<title>Invidious</title>
|
|
<% end %>
|
|
|
|
<% top_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 class="h-box">
|
|
<a style="width:100%;" href="/watch?v=<%= video.id %>">
|
|
<img style="width:100%;" src="<%= player_response["videoDetails"]["thumbnail"]["thumbnails"][0]["url"] %>"/>
|
|
<p><%= video.title %></p>
|
|
</a>
|
|
<p><b><a style="width:100%;" href="https://youtube.com/channel/<%= video.info["ucid"] %>"><%= video.info["author"] %></a></b></p>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|