2014-08-29 10:37:35 +09:00
|
|
|
<template name="postThumbnail">
|
|
|
|
{{#if thumbnailUrl}}
|
2015-02-12 23:44:59 -06:00
|
|
|
<div class="post-thumbnail" aria-hidden="true">
|
2014-12-13 17:43:52 +09:00
|
|
|
<a class="post-thumbnail-link {{playVideoClass}}" href="{{postLink}}" target="_blank">
|
2015-02-12 23:44:59 -06:00
|
|
|
<img class="post-thumbnail-image" src="{{thumbnailUrl}}" onerror="this.style.display='none';" aria-hidden="true"/>
|
2014-12-13 17:43:52 +09:00
|
|
|
</a>
|
|
|
|
</div>
|
2014-08-29 10:37:35 +09:00
|
|
|
{{/if}}
|
|
|
|
{{#if media}}
|
|
|
|
{{> UI.dynamic template=videoTemplate data=this}}
|
|
|
|
{{/if}}
|
|
|
|
</template>
|