mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 15:17:18 +01:00
14 lines
349 B
Django/Jinja
14 lines
349 B
Django/Jinja
<!doctype html>
|
|
<html>
|
|
<head><title>{% block title %}Website Name{% endblock %}</title></head>
|
|
<body>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="/">Home</a></li>
|
|
<li><a href="/content">Content</a></li>
|
|
<li><a href="/about">About</a></li>
|
|
</ul>
|
|
</nav>
|
|
{% block body %}{% endblock %}
|
|
</body>
|
|
</html>
|