mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 15:17:18 +01:00
10 lines
222 B
Django/Jinja
10 lines
222 B
Django/Jinja
{% 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 %}
|