mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
35 lines
1.1 KiB
XML
35 lines
1.1 KiB
XML
|
<table>
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<td valign="top">
|
||
|
<div class="video-preview">
|
||
|
<a href="/video{$video->getPrettyId()}">
|
||
|
<img src="{$video->getThumbnailURL()}"
|
||
|
style="max-width: 170px; max-height: 127px; margin: auto;" >
|
||
|
</a>
|
||
|
</div>
|
||
|
</td>
|
||
|
<td valign="top" style="width: 100%">
|
||
|
{ifset infotable}
|
||
|
{include infotable, x => $dat}
|
||
|
{else}
|
||
|
<a href="/video{$video->getPrettyId()}">
|
||
|
<b>
|
||
|
{$video->getName()}
|
||
|
</b>
|
||
|
</a>
|
||
|
<br/>
|
||
|
<p>
|
||
|
<span>{$video->getDescription() ?? ""}</span>
|
||
|
</p>
|
||
|
<span style="color: grey;">{_video_uploaded} {$video->getPublicationTime()}</span><br/>
|
||
|
|
||
|
<p>
|
||
|
<a href="/video{$video->getPrettyId()}">{_view_video}</a>
|
||
|
{if $video->getCommentsCount() > 0}| <a href="/video{$video->getPrettyId()}#comments">{_comments} ({$video->getCommentsCount()})</a>{/if}
|
||
|
</p>
|
||
|
{/ifset}
|
||
|
</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|