michalvankodev-site/axum_server/templates/post.html

12 lines
184 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>
<article>{{content|escape("none")}}</article>
{# footer #}
{% endblock %}