From a1368c8ac016e978a8600bfc26b7ee7aa52fb6b0 Mon Sep 17 00:00:00 2001 From: Jonathan Peacher Date: Thu, 22 Jun 2023 12:46:14 -0500 Subject: [PATCH] feat(recipes): README --- recipes/README.md | 11 +++++++++++ recipes/templates/recipes/index.html | 22 ++++++++++++++++++---- 2 files changed, 29 insertions(+), 4 deletions(-) create mode 100644 recipes/README.md diff --git a/recipes/README.md b/recipes/README.md new file mode 100644 index 0000000..1c458a7 --- /dev/null +++ b/recipes/README.md @@ -0,0 +1,11 @@ +# Recipes + +Manage recipes and generate shopping list! + +## Features + +- Manage recipes and their ingredients. +- Manage ingredient units and aisles. +- Generate ingredient shopping list! + - Grouped by unique `name-unit-aisle` across selected recipes. + - Ex. `2 cups rice` and `3 cups rice` will be combined into `5 cups rice`. diff --git a/recipes/templates/recipes/index.html b/recipes/templates/recipes/index.html index 2245425..818278b 100644 --- a/recipes/templates/recipes/index.html +++ b/recipes/templates/recipes/index.html @@ -3,11 +3,25 @@ {% block index_header %}

Recipes

-

TK TK TK

+

Manage recipes and generate shopping list!

+ Get Started →
{% endblock %} - + {% block index_main %} -

TK TK TK

- Get Started → +

Features

+ {% endblock %} \ No newline at end of file