From ffee36ea41cac54f836ed05854f2c2465e19e888 Mon Sep 17 00:00:00 2001 From: Jon Seager Date: Sun, 8 Feb 2026 16:10:21 +0000 Subject: [PATCH] feat(home): make brew cards clickable, linking to detail page Change brew card from div to anchor element with hover border effect. Brew Again button uses preventDefault to avoid navigating to the detail page when clicked. --- templates/partials/brew_card.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/templates/partials/brew_card.html b/templates/partials/brew_card.html index 532f6d9..5622dfe 100644 --- a/templates/partials/brew_card.html +++ b/templates/partials/brew_card.html @@ -1,6 +1,6 @@ {% import "partials/icons.html" as icons %} {% macro card(brew, is_authenticated) %} -
+
{{ brew.roast_name }}

{{ brew.roaster_name }}

@@ -13,13 +13,13 @@ {% if !brew.quick_notes.is_empty() %}

{{ brew.quick_notes_label }}

{% endif %}
{% if is_authenticated %} -
+ {% endmacro %}