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