Files
edx-platform/templates/video.html
2012-05-31 13:24:23 -04:00

24 lines
503 B
HTML

% if name is not UNDEFINED and name != None:
<h1> ${name} </h1>
% endif
<div id="video_${id}" class="video" data-streams="${streams}">
<div class="tc-wrapper">
<article class="video-wrapper">
<section class="video-player">
<div id="${id}"></div>
</section>
<section class="video-controls"></section>
</article>
</div>
</div>
<ol class="video-mod">
% for t in annotations:
<li id="video-${annotations.index(t)}">
${t[1]['content']}
</li>
% endfor
</ol>