The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/packages/rocketchat-oembed/client/oembedUrlWidget.html

28 lines
739 B

<template name="oembedUrlWidget">
{{#if show}}
<blockquote>
<div style="{{#if image}}min-height: 60px;{{/if}} padding: 10px 3px;">
{{#if image}}
{{#if meta.ogImageUserGenerated}}
<div>
<a href="{{url}}" target="_blank">
<img src="{{image}}" height="200" />
</a>
</div>
{{else}}
<a href="{{url}}" target="_blank">
<img src="{{image}}" height="60" align="left" style="margin-right: 10px;"/>
</a>
{{/if}}
{{/if}}
<div style="color: #AAA;">{{parsedUrl.host}}</div>
{{#if title}}
<div>
<a href="{{url}}" target="_blank"><strong>{{title}}</strong></a>
</div>
{{/if}}
{{{description}}}
</div>
</blockquote>
{{/if}}
</template>