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