food-tracker/templates/index.html

25 lines
No EOL
677 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://cdn.jsdelivr.net/npm/htmx.org@2.0.7/dist/htmx.min.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Food Tracker</title>
</head>
<body>
<main>
<div style="display: flex-root; margin: auto; width: fit-content;">
{% for food in foods %}
{% include "food.html" %}
{% endfor %}
<div style="background-color: lightblue; margin: 1em;">
<b style="font-size: 24px; padding: 1em;">Total: {{ sum }} kc.</b>
</div>
</div>
</main>
</body>
</html>