2015-05-18 10:12:48 +09:00
|
|
|
<template name="post_thumbnail">
|
2015-04-22 07:50:11 +09:00
|
|
|
{{#if thumbnailUrl}}
|
|
|
|
<div class="post-thumbnail" aria-hidden="true">
|
2015-06-18 13:04:38 +09:00
|
|
|
<a class="post-thumbnail-link {{playVideoClass}}" href="{{postLink}}" target="{{target}}">
|
2015-04-22 07:50:11 +09:00
|
|
|
<img class="post-thumbnail-image" src="{{thumbnailUrl}}" onerror="this.style.display='none';" aria-hidden="true"/>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
<div class="post-thumbnail-empty"></div>
|
|
|
|
{{/if}}
|
|
|
|
{{#if media}}
|
2015-06-05 11:28:02 +09:00
|
|
|
{{> post_video}}
|
2015-04-22 07:50:11 +09:00
|
|
|
{{/if}}
|
|
|
|
</template>
|