{% extends "base.html" %} {% block title %}{{ title }}{% endblock %} {% block description %} {% match summary %} {% when Some with (summary_content) %} {{ summary_content }} {% when None %} A post on {{ settings.site_name }} {% 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 %}
{% match featured_image %} {% when Some with (featured_image) %}
{% when None %} {% endmatch %} {% for content_block in content_blocks %} {% include "resolve_content.html" %} {% endfor %}
{% endblock %}