Is there a shorter syntax in Twig to output a conditional string of text?
{% if not info.id %}create{% else %}edit{% endif %}
The null-coalescing operator also working, like:
{% set avatar = blog.avatar ?? 'https://example.dev/brand/avatar.jpg' %}