Fix missing handlebars checks

This commit is contained in:
Lorenzo Dellacà
2020-11-04 23:43:30 +01:00
parent f08c70ca67
commit 67ba61d93b
6 changed files with 23 additions and 10 deletions

View File

@@ -1,8 +1,10 @@
<article class="{{post_class}}">
<a class="mind-tag-card_main" href="{{url}}">
<img class="mind-tag-card_feature-image" src="{{img_url feature_image size="s"}}" alt="Feature Image"/>
<header class="mind-tag-card_header">
<h4>{{name}}</h4>
</header>
</a>
<a class="mind-tag-card_main" href="{{url}}">
{{#if feature_image}}
<img class="mind-tag-card_feature-image" src="{{img_url feature_image size="s"}}" alt="Feature Image"/>
{{/if}}
<header class="mind-tag-card_header">
<h4>{{name}}</h4>
</header>
</a>
</article>