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
876 B

<template name="oembedUrlWidget">
{{#if show}}
<blockquote class="background-transparent-darker-before">
<div style="{{#if image}}min-height: 80px;{{/if}} padding: 10px 3px;">
{{#if image}}
{{#if meta.ogImageUserGenerated}}
<div>
<a href="{{url}}" target="{{target}}">
<img src="{{image}}" height="200" />
</a>
</div>
{{else}}
<a href="{{url}}" target="{{target}}">
<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="{{target}}"><strong>{{{title}}}</strong></a>
</div>
{{/if}}
<div style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis">{{{description}}}</div>
</div>
</blockquote>
{{/if}}
</template>