{% match content_block %} {% when BlockTypes::HR %}
{% when BlockTypes::PARAGRAPH { text } %}

{{ text }}

{% when BlockTypes::MARKDOWN { content } %} {{ content|markdown }} {% when BlockTypes::HTML { content } %} {{ content|safe }} {% when BlockTypes::HEADER { text, size } %} {{text}} {% when BlockTypes::IMAGE { content } %} {% match content %} {% when Some with (image) %}
{{ alt }} {% match image.description %} {% when Some with (image_description) %} {{ image_description }} {% when None %} {% endmatch %}

{% when None %} {% endmatch %} {% else %} UNSUPPORTED block type here! {% endmatch %}