1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/movim_ynh.git synced 2024-09-03 19:46:19 +02:00
movim_ynh/sources/app/widgets/Publish/_publish_embed.tpl

21 lines
752 B
Smarty
Raw Normal View History

2015-12-15 11:54:49 +01:00
<div class="quote" cite="{$embed->url|htmlspecialchars}">
<ul>
<li>
<span>
2015-12-15 11:54:49 +01:00
<a href="{$embed->url|htmlspecialchars}" target="_blank">{$embed->title|htmlspecialchars}</a>
</span>
2015-12-15 11:54:49 +01:00
<p>{$embed->description|htmlspecialchars}</p>
<p>
2015-12-15 11:54:49 +01:00
<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>
2015-09-10 15:41:45 +02:00
</div>