bolt / themes

Themes - a separate repository of themes included with the Bolt distribution
MIT License
24 stars 18 forks source link

record.twig may wanna wrap img in if statement #56

Closed ghost closed 3 years ago

ghost commented 3 years ago

<img src="{{ record|image }}" class="absolute left-0 top-0 w-full h-full z-0 object-cover" />

won't display if record.img is not set so it should either default to some default image or be wrapped inside an if statement to avoid broken image display.

if (record|image != "") { output img }

Not sure if this conflicts with an intent to make templates look simple.