video_channel/app/views/panel/video/front_end/channel_videos/index.html.erb

14 lines
568 B
Plaintext

<div class="video-widget">
<h3 class="h3">Videos</h3>
<ul class="video-list">
<% @client_videos.videos.each do |v| %>
<% @video = v.video_id.split(/tag:youtube.com,2008:video:+/).last %>
<% @vd = UnvlogIt.new("https://www.youtube.com/watch?v=#{@video}")%>
<li>
<p class="video-title"><%= @vd.title %></p>
<div class="video">
<%=link_to image_tag(@vd.thumbnail, :size => '200x150'), "https://www.youtube.com/watch?v=#{@video}", :class => "cover", :target => "blank" %>
</div>
</li>
<%end%>
</div>