{% extends "base.html" %} {% block title %}Today – Nutrition Tracker{% endblock %} {% block content %}

Today

{{ today_date }}

📊 Nutrition Summary

{% if intake | length > 0 %}
{% for p in intake %}
{{ p.value.amount | fmt_num }}{% if p.value.unit %} {{ p.value.unit }}{% endif %}
{{ p.name }}
{% endfor %}
{% else %}

No food logged yet today.

{% endif %}

🍽 Log Food

🏃 Log Exercise

📋 Today's Log

{% if items | length > 0 %} {% else %}

Nothing logged yet.

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}