Fix post image url too (#504)

This commit is contained in:
Abel Cheung 2019-06-14 01:28:17 +08:00 committed by Dean Attali
parent 7b43e4061d
commit 7061f6be17
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ use-site-title: true
{% if post.image %}
<div class="post-image">
<a href="{{ post.url | relative_url }}">
<img src="{{ post.image }}">
<img src="{{ post.image | relative_url }}">
</a>
</div>
{% endif %}