Files
foodplanner/templates/templates.html
2025-09-29 07:32:49 -07:00

20 lines
559 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Templates</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container mt-4">
<h1>Templates</h1>
<p>This is the templates page.</p>
<ul>
{% for template in templates %}
<li>{{ template.name }}</li>
{% endfor %}
</ul>
</div>
</body>
</html>