mirror of
https://github.com/YunoHost-Apps/movim_ynh.git
synced 2024-09-03 19:46:19 +02:00
21 lines
666 B
Smarty
21 lines
666 B
Smarty
|
<q cite="{$embed->url}">
|
||
|
<ul>
|
||
|
<li>
|
||
|
<span>
|
||
|
<a href="{$embed->url|htmlspecialchars}" target="_blank">{$embed->title}</a>
|
||
|
</span>
|
||
|
<p>{$embed->description}</p>
|
||
|
<p>
|
||
|
<a href="{$embed->providerUrl|htmlspecialchars}" target="_blank">{$embed->providerName}</a>
|
||
|
</p>
|
||
|
</li>
|
||
|
{if="$embed->images != null"}
|
||
|
<li>
|
||
|
<a href="{$embed->images[0]['value']|htmlspecialchars}" target="_blank">
|
||
|
<img src="{$embed->images[0]['value']|htmlspecialchars}"/>
|
||
|
</a>
|
||
|
</li>
|
||
|
{/if}
|
||
|
</ul>
|
||
|
</q>
|