2015-04-22 07:50:11 +09:00
|
|
|
<template name="afPostThumbnail">
|
|
|
|
{{#if embedlyKeyExists}}
|
2015-07-17 16:17:26 +09:00
|
|
|
<div class="post-thumbnail-container">
|
2015-04-22 07:50:11 +09:00
|
|
|
<img src="{{this.value}}" class="post-thumbnail-preview" style="{{style}}"/>
|
|
|
|
<div class="post-thumbnail-loading">{{>spinner}}</div>
|
|
|
|
</div>
|
|
|
|
<input type="hidden" value="{{this.value}}" {{this.atts}}/>
|
|
|
|
<a href="#" class="regenerate-thumbnail-link">{{_ 'regenerate_thumbnail'}}</a>
|
|
|
|
<a href="#" class="remove-thumbnail-link">{{_ 'clear_thumbnail'}}</a>
|
|
|
|
{{else}}
|
|
|
|
{{#if isAdmin}}
|
|
|
|
<p>{{_ "please_fill_in_embedly_key"}}</p>
|
|
|
|
{{else}}
|
|
|
|
<p>{{_ "please_ask_your_admin_to_fill_in_embedly_key"}}</p>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
</template>
|