{% 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 { id, 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 %} {% when BlockTypes::QUOTE { quote, caption } %}

{{ quote }}

{{ caption }}
{% else %} UNSUPPORTED block type here! {% endmatch %}