I'm trying to switch to the new liquid syntax but I I don't see how to use HTML markup within the liquid block and I can't find any documented examples. I guess I could use a partial instead. Is that best practice?
Old way:
{% if id %}
<h1>The id exists.</h1>
{% else %}
<p>{{ result.errors }}</p>
{% endif %}
New way?
{% liquid
if id
???
else
??? echo result.errors ???
endif
%}