replace 'image' YAML param with 'thumbnail-img' and don't use the thumbnail as the page avatar

This commit is contained in:
Dean Attali 2020-07-05 05:18:31 +00:00
parent 43809d04ae
commit 70f7345a29
4 changed files with 5 additions and 13 deletions

View file

@ -25,10 +25,10 @@ layout: page
</p>
<div class="post-entry-container">
{% if post.image %}
{% if post.thumbnail-img %}
<div class="post-image">
<a href="{{ post.url | relative_url }}">
<img src="{{ post.image | relative_url }}">
<img src="{{ post.thumbnail-img | relative_url }}">
</a>
</div>
{% endif %}