michalvankodev-site/axum_server/templates/post.html

12 lines
181 B
HTML

{% extends "base.html" %}
{% block title %}{{title}}{% endblock %}
{% block content %}
<h1>{{title}}</h1>
<article>{{body|escape("none")}}</article>
{# footer #}
{% endblock %}