1
0
Fork 0
mirror of https://github.com/tokio-rs/axum.git synced 2025-01-27 18:29:06 +01:00
axum/examples/templates-minijinja/templates/content.jinja

11 lines
222 B
Text
Raw Permalink Normal View History

{% extends "layout" %}
{% block title %}{{ super() }} | {{ title }} {% endblock %}
{% block body %}
<h1>{{ title }}</h1>
{% for data_entry in entries %}
<ul>
<li>{{ data_entry }}</li>
</ul>
{% endfor %}
{% endblock %}