mirror of
https://github.com/openvk/openvk
synced 2025-03-15 05:55:29 +03:00
15 lines
449 B
XML
15 lines
449 B
XML
|
{block content}
|
||
|
<center style="margin-bottom: 8pt;">
|
||
|
{if $video->getType() === 0}
|
||
|
<video width="610" src="{$video->getURL()}" controls></video>
|
||
|
{else}
|
||
|
{var driver = $video->getVideoDriver()}
|
||
|
{if !$driver}
|
||
|
Эта видеозапись не поддерживается в вашей версии OpenVK.
|
||
|
{else}
|
||
|
{$driver->getEmbed()|noescape}
|
||
|
{/if}
|
||
|
{/if}
|
||
|
</center>
|
||
|
{/block}
|