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