{% extends "base.html" %} {% block title %}{{ title }}{% endblock %} {% block description %} {% match summary %} {% when Some with (summary_content) %} {{ summary_content }} {% when None %} A post on eviee.gay {% endmatch %} {% endblock %} {% block content %} {% if draft == true -%}
⚠️ This post is marked as a draft! It may not yet be complete!
{% endif -%}

{{ title }}

{% match summary %} {% when Some with (summary_content) %}

{{ summary_content }}

{% when None %} {% endmatch %} {% match last_updated %} {% when Some with (last_updated_date) %}

Published: {{ publish_date }} | Last updated: {{ last_updated_date }}

{% when None %}

Published: {{ publish_date }}

{% endmatch %}
{% for content_block in content_blocks %} {% match content_block %} {% when BlockTypes::HR %}
{% when BlockTypes::PARAGRAPH { text } %}

{{ text }}

{% when BlockTypes::MARKDOWN { content } %} {{ content|markdown }} {% when BlockTypes::HEADER { text, size } %} {{text}} {% when BlockTypes::UNSUPPORTED %} UNSUPPORTED block type here! {% endmatch %} {% endfor %}
Comments are W.I.P {% endblock %}