mirror of
https://github.com/YunoHost-Apps/movim_ynh.git
synced 2024-09-03 19:46:19 +02:00
20 lines
752 B
Smarty
20 lines
752 B
Smarty
<div class="quote" cite="{$embed->url|htmlspecialchars}">
|
|
<ul>
|
|
<li>
|
|
<span>
|
|
<a href="{$embed->url|htmlspecialchars}" target="_blank">{$embed->title|htmlspecialchars}</a>
|
|
</span>
|
|
<p>{$embed->description|htmlspecialchars}</p>
|
|
<p>
|
|
<a href="{$embed->providerUrl|htmlspecialchars}" target="_blank">{$embed->providerName|htmlspecialchars}</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>
|
|
</div>
|