michalvankodev-site/axum_server/templates/post.html

12 lines
181 B
HTML
Raw Normal View History

2024-01-11 22:16:38 +01:00
{% extends "base.html" %}
{% block title %}{{title}}{% endblock %}
{% block content %}
<h1>{{title}}</h1>
2024-01-16 20:35:13 +01:00
<article>{{body|escape("none")}}</article>
2024-01-11 22:16:38 +01:00
{# footer #}
{% endblock %}