Files
food/kitchen/templates/kitchen/log.html
T
Caine 2a45be70e2 Phase 4: HTMX frontend with dark palette
- 4 pages: Pantry, Recipes, Shopping List, Cook Log
- HTMX-powered: add/delete pantry items, toggle shopping, generate smart list
- Custom 13-colour palette from Lospec (dark bg, yellow accent)
- Mobile-responsive
- Whitenoise for static files in production
- All routes under /app/
- API (/api/) stays internal, frontend (/app/) for browser use
2026-04-02 23:08:43 +01:00

11 lines
220 B
HTML

{% extends "kitchen/base.html" %}
{% block title %}Cook Log — Kitchen{% endblock %}
{% block content %}
<h1>Cook Log</h1>
<div id="log-entries">
{% include "kitchen/partials/cook_log.html" %}
</div>
{% endblock %}