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>
|
2015-03-24 13:13:04 +09:00
|
|
|
{{else}}
|
|
|
|
<div class="post-thumbnail-empty"></div>
|
2014-08-29 10:37:35 +09:00
|
|
|
{{/if}}
|
|
|
|
{{#if media}}
|
2015-04-13 16:29:33 +09:00
|
|
|
{{> postVideo data=this}}
|
2014-08-29 10:37:35 +09:00
|
|
|
{{/if}}
|
2015-04-13 16:29:33 +09:00
|
|
|
</template>
|