From 4cbe635faf16f6419333550c67f6e3c8ba7bd0a2 Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Wed, 9 Jul 2025 10:48:06 -0500 Subject: [PATCH] No title links --- app/views/public/cards/show.html.erb | 2 +- app/views/public/cards/show/_title.html.erb | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 app/views/public/cards/show/_title.html.erb diff --git a/app/views/public/cards/show.html.erb b/app/views/public/cards/show.html.erb index 30c55ed01..0a3d61f47 100644 --- a/app/views/public/cards/show.html.erb +++ b/app/views/public/cards/show.html.erb @@ -21,7 +21,7 @@
- <%= render "cards/container/title", card: @card %> + <%= render "public/cards/show/title", card: @card %> <%= render "cards/display/public_preview/stages", card: @card if @card.doing? %>
diff --git a/app/views/public/cards/show/_title.html.erb b/app/views/public/cards/show/_title.html.erb new file mode 100644 index 000000000..9d4f2aa0f --- /dev/null +++ b/app/views/public/cards/show/_title.html.erb @@ -0,0 +1,8 @@ +
+

+ <%= tag.span card.title, class: "card__title-link" %> +

+
+ <%= card.description %> +
+
\ No newline at end of file