- 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
11 lines
220 B
HTML
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 %}
|