]> git.mxchange.org Git - friendica.git/blob - view/templates/video_top.tpl
wrapping up 2019.12
[friendica.git] / view / templates / video_top.tpl
1 <div class="video-top-wrapper lframe" id="video-top-wrapper-{{$video.id}}">
2         {{* set preloading to none to lessen the load on the server *}}
3         <video controls preload="none" data-setup="" width="100%" height="auto">
4                 <source src="{{$video.src}}" type="{{$video.mime}}" />
5         </video>
6
7 {{if $delete_url }}
8         <form method="post" action="{{$delete_url}}">
9                 <input type="submit" name="delete" value="X" class="video-delete"></input>
10                 <input type="hidden" name="id" value="{{$video.id}}"></input>
11         </form>
12 {{/if}}
13 </div>