]> git.mxchange.org Git - friendica.git/blob - view/templates/video_top.tpl
fix account_type
[friendica.git] / view / templates / video_top.tpl
1
2 <div class="video-top-wrapper lframe" id="video-top-wrapper-{{$video.id}}">
3         {{* v4.0.0 of VideoJS requires that there be a "data-setup" tag in the
4             <video> element for it to process the tag *}}
5         {{* set preloading to none to lessen the load on the server *}}
6         <video id="video-{{$video.id}}" class="video-js vjs-default-skin"
7           controls preload="none" data-setup="" width="400" height="264">
8          <source src="{{$video.src}}" type="{{$video.mime}}" />
9         </video>
10
11         {{*<div class="video-top-album-name"><a href="{{$video.album.link}}" class="video-top-album-link" title="{{$video.album.alt}}" >{{$video.album.name}}</a></div>*}}
12         {{if $delete_url }}
13                 <form method="post" action="{{$delete_url}}">
14                 <input type="submit" name="delete" value="X" class="video-delete"></input>
15                 <input type="hidden" name="id" value="{{$video.id}}"></input>
16                 </form>
17         {{/if}}
18 </div>
19