add tailwindcss

This commit is contained in:
Waylon S. Walker 2024-10-14 19:56:41 -05:00
parent a426df12c0
commit 16e207000f
20 changed files with 2421 additions and 100 deletions

View file

@ -1,13 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>siemap</title>
</head>
<body>
<h1>Sitemap</h1>
{% extends "base.html" %}
{% for route in data.available_routes %}
<li><a href="{{ route }}">{{ route }}</a> </li>
{% endfor %}
</body>
</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 %}