fastapi-dynamic-response/templates/sitemap.html
Waylon S. Walker 16e207000f add tailwindcss
2024-10-14 19:56:41 -05:00

11 lines
242 B
HTML

{% extends "base.html" %}
{% block title %}Sitemap{% endblock %}
{% block content %}
<h1>Sitemap</h1>
{% for route in data.available_routes %}
<li><a href="{{ route }}">{{ route }}</a> </li>
{% endfor %}
{% endblock %}