Post featured image

In this case it’s a matter of taste (and space…), but I tend to use this construction for these conditionals:

{{ with .Params.featured_image }}<img src="{{ . }}">{{ end }}

Your code works fine, but “with” has less surprises in some cases, and it’s more compact.

3 Likes