1
0
Fork 0
mirror of https://github.com/tokio-rs/axum.git synced 2025-01-15 22:20:53 +01:00
axum/examples/templates-minijinja/templates/home.jinja
2024-02-11 12:17:41 +01:00

6 lines
162 B
Django/Jinja

{% extends "layout" %}
{% block title %}{{ super() }} | {{ title }} {% endblock %}
{% block body %}
<h1>{{ title }}</h1>
<p>{{ welcome_text }}</p>
{% endblock %}