{% extends "base.html" %}
{% block og_meta %}
{% match thumbnail %}
{% when Some with (img) %}
{% let src = crate::picture_generator::image_src_generator::generate_image_with_src(img, 1200, 630, "_og").unwrap_or("thumbnail not found".to_string())|safe %}
{% when None %}
{% endmatch %}
{% endblock %}
{% block content %}
{{title}}
{{body|parse_markdown|safe}}
{# footer #}
{% endblock %}