This commit is contained in:
syuilo 2017-11-01 05:16:05 +09:00
parent 48695af5f5
commit f1f552c4f1

View file

@ -100,7 +100,9 @@
{ post.text }
<div class="media" if={ post.media }>
<virtual each={ file in post.media }>
<img src={ file.url + '?thumbnail&size=512' } alt={ file.name } title={ file.name }/>
<a href={ file.url } target="_blank">
<img src={ file.url + '?thumbnail&size=512' } alt={ file.name } title={ file.name }/>
</a>
</virtual>
</div>
</div>
@ -136,6 +138,14 @@
> div
padding 0 0 1em 2em
> .media
> a
display block
> img
max-width 100%
vertical-align bottom
</style>
<script>
this.post = this.opts.post;