12 lines
254 B
Plaintext
12 lines
254 B
Plaintext
|
<% content_for "header" do %>
|
||
|
<title>Trending - Invidious</title>
|
||
|
<% end %>
|
||
|
|
||
|
<div class="pure-g">
|
||
|
<% trending.each_slice(4) do |slice| %>
|
||
|
<% slice.each do |item| %>
|
||
|
<%= rendered "components/item" %>
|
||
|
<% end %>
|
||
|
<% end %>
|
||
|
</div>
|