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/oembedFrameWidget.html

25 lines
716 B

<template name="oembedFrameWidget">
{{#if parsedUrl}}
<blockquote>
{{#if meta.oembedProviderName}}
{{#if meta.oembedProviderUrl}}
<a href="{{meta.oembedProviderUrl}}" style="color: #9e9ea6">{{meta.oembedProviderName}}</a><br/>
{{/if}}
{{/if}}
{{#if meta.oembedAuthorName}}
{{#if meta.oembedAuthorUrl}}
<a href="{{meta.oembedAuthorUrl}}">{{meta.oembedAuthorName}}</a><br/>
{{/if}}
{{/if}}
{{#if meta.oembedTitle}}
{{#if meta.oembedUrl}}
<a href="{{meta.oembedUrl}}">{{meta.oembedTitle}}</a><br/>
{{/if}}
{{/if}}
{{#if meta.oembedDescription}}
<p>{{meta.oembedDescription}}</p>
{{/if}}
{{{meta.oembedHtml}}}
</blockquote>
{{/if}}
</template>