|
|
|
@ -22,7 +22,10 @@
|
|
|
|
|
<a style="width:100%;" href="<%= url %>">
|
|
|
|
|
<% if env.get?("user") && env.get("user").as(User).preferences.thin_mode %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<img style="width:100%;" src="/vi/<%= item.videos[0]?.try &.id %>/mqdefault.jpg"/>
|
|
|
|
|
<div class="thumbnail">
|
|
|
|
|
<img class="thumbnail" src="/vi/<%= item.videos[0]?.try &.id %>/mqdefault.jpg"/>
|
|
|
|
|
<p class="length"><%= recode_length_seconds(item.videos[0].length_seconds) %></p>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
<p><%= item.title %></p>
|
|
|
|
|
</a>
|
|
|
|
@ -35,23 +38,45 @@
|
|
|
|
|
<a style="width:100%;" href="/watch?v=<%= item.id %>&list=<%= item.mixes[0] %>">
|
|
|
|
|
<% if env.get?("user") && env.get("user").as(User).preferences.thin_mode %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<img style="width:100%;" src="/vi/<%= item.id %>/mqdefault.jpg"/>
|
|
|
|
|
<div class="thumbnail">
|
|
|
|
|
<img class="thumbnail" src="/vi/<%= item.id %>/mqdefault.jpg"/>
|
|
|
|
|
<p class="length"><%= recode_length_seconds(item.length_seconds) %></p>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
<p><%= item.title %></p>
|
|
|
|
|
</a>
|
|
|
|
|
<p>
|
|
|
|
|
<b><a style="width:100%;" href="/channel/<%= item.ucid %>"><%= item.author %></a></b>
|
|
|
|
|
</p>
|
|
|
|
|
<% else %>
|
|
|
|
|
<% if item.responds_to?(:playlists) && !item.playlists.empty? %>
|
|
|
|
|
<% params = "&list=#{item.playlists[0]}" %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<% params = nil %>
|
|
|
|
|
<% when PlaylistVideo %>
|
|
|
|
|
<a style="width:100%;" href="/watch?v=<%= item.id %>&list=<%= item.playlists[0] %>">
|
|
|
|
|
<% if env.get?("user") && env.get("user").as(User).preferences.thin_mode %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<div class="thumbnail">
|
|
|
|
|
<img class="thumbnail" src="/vi/<%= item.id %>/mqdefault.jpg"/>
|
|
|
|
|
<p class="length"><%= recode_length_seconds(item.length_seconds) %></p>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
<p><%= item.title %></p>
|
|
|
|
|
</a>
|
|
|
|
|
<% if item.responds_to?(:live_now) && item.live_now %>
|
|
|
|
|
<p>LIVE</p>
|
|
|
|
|
<% end %>
|
|
|
|
|
<a style="width:100%;" href="/watch?v=<%= item.id %><%= params %>">
|
|
|
|
|
<p>
|
|
|
|
|
<b><a style="width:100%;" href="/channel/<%= item.ucid %>"><%= item.author %></a></b>
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<% if Time.now - item.published > 1.minute %>
|
|
|
|
|
<h5>Shared <%= recode_date(item.published) %> ago</h5>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<a style="width:100%;" href="/watch?v=<%= item.id %>">
|
|
|
|
|
<% if env.get?("user") && env.get("user").as(User).preferences.thin_mode %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<img style="width:100%;" src="/vi/<%= item.id %>/mqdefault.jpg"/>
|
|
|
|
|
<div class="thumbnail">
|
|
|
|
|
<img class="thumbnail" src="/vi/<%= item.id %>/mqdefault.jpg"/>
|
|
|
|
|
<p class="length"><%= recode_length_seconds(item.length_seconds) %></p>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
<p><%= item.title %></p>
|
|
|
|
|
</a>
|
|
|
|
|