video_channel/app/views/panel/video/widget/channel_videos/channel_videos.html.erb

9 lines
377 B
Plaintext

<h4>Videos</h4>
<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 %>
<div class="video"><%= @vd.embed_html(200, 150).html_safe %></div></li>
<%end%>