1
0
Fork 0
mirror of https://github.com/tokio-rs/axum.git synced 2025-01-28 02:34:41 +01:00
axum/examples/templates-minijinja/templates/home.jinja

7 lines
162 B
Text
Raw Permalink Normal View History

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