axum/examples/templates-minijinja/templates/content.jinja

11 lines
222 B
Text
Raw 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 %}