From b5f0c3ee2c3060dd9821d42f4e1bcbb87cbbee10 Mon Sep 17 00:00:00 2001 From: Ken D'Ambrosio Date: Mon, 25 May 2026 00:52:19 +0000 Subject: Add recipe overview page linked from dashboard stat card Clicking "Active Recipes" on the dashboard goes to /recipes/overview, which shows favorites and the 12 most recently added recipes as cards. Favorites are highlighted with a red border. Stat card has a hover lift. Co-Authored-By: Claude Sonnet 4.6 --- app/templates/recipe_overview.html | 81 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 app/templates/recipe_overview.html (limited to 'app/templates/recipe_overview.html') diff --git a/app/templates/recipe_overview.html b/app/templates/recipe_overview.html new file mode 100644 index 0000000..252aed2 --- /dev/null +++ b/app/templates/recipe_overview.html @@ -0,0 +1,81 @@ +{% extends "base.html" %} +{% block title %}Recipe Overview — Menu Planner{% endblock %} + +{% block content %} +
+

Recipe Overview

+ Full Library +
+ +{% if favorites %} +

Favorites

+ +{% endif %} + +{% if recent %} +

Recently Added

+ +{% endif %} + +{% if not favorites and not recent %} +
+ +

No recipes yet. Add one or use the AI assistant.

+
+{% endif %} +{% endblock %} -- cgit v1.2.3