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-08-01 12:49:44 +09:00
|
|
|
|
<a class="post-thumbnail-link {{playVideoClass}}" href="{{this.getLink}}" target="{{this.getLinkTarget}}">
|
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}}
|
2015-07-07 10:55:09 +09:00
|
|
|
|
{{#with media}}
|
|
|
|
|
{{#if showVideo}}
|
2015-07-20 09:15:12 +09:00
|
|
|
|
<div class="post-video-lightbox">
|
2015-07-07 10:55:09 +09:00
|
|
|
|
<a class="post-video-lightbox-hide" href="#">×</a>
|
2015-07-20 09:15:12 +09:00
|
|
|
|
<div class="post-video-lightbox-inner js-video">
|
2015-07-07 10:55:09 +09:00
|
|
|
|
{{{html}}}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{{/if}}
|
|
|
|
|
{{/with}}
|
2015-04-22 07:50:11 +09:00
|
|
|
|
</template>
|