diff --git a/source/_patterns/04-components/card/card-elements/_header.twig b/source/_patterns/04-components/card/card-elements/_header.twig
index f5fb69180fa0befd18aa007b944cd399db59f153..85ac653789cf83cca7677d7511e18805561c4059 100644
--- a/source/_patterns/04-components/card/card-elements/_header.twig
+++ b/source/_patterns/04-components/card/card-elements/_header.twig
@@ -10,6 +10,7 @@
     {% include '@components/card/card-elements/_title.twig' with {
       'header_level': 2,
       'title': header.title,
+      'type': type
     } %}
   {% endif %}
 
diff --git a/source/_patterns/04-components/card/card-elements/_title.twig b/source/_patterns/04-components/card/card-elements/_title.twig
index 59160d13d17c1ed658689dc73a8f7c9b69529551..dae73fdb20f5099e2586a6b61ac2b5a7f66cd1a0 100644
--- a/source/_patterns/04-components/card/card-elements/_title.twig
+++ b/source/_patterns/04-components/card/card-elements/_title.twig
@@ -5,13 +5,14 @@
     <strong>
 {% endif %}
 
-{% if url %}
+
+{% if url and type != 'node' %}
   <a href="{{ url }}">
 {% endif %}
 
 {{ title }}
 
-{% if url %}
+{% if url and type != 'node' %}
   </a>
 {% endif %}
 
diff --git a/source/_patterns/04-components/card/card.twig b/source/_patterns/04-components/card/card.twig
index 0a5439e4e3c6410b059ae97739bc84909e30c22a..5b058e378b530f96e3f58b0accdc61550ef97a2e 100644
--- a/source/_patterns/04-components/card/card.twig
+++ b/source/_patterns/04-components/card/card.twig
@@ -24,7 +24,8 @@
     {% if show_header == 'yes' %}
       {% include '@components/card/card-elements/_header.twig' with {
         'header': header,
-        'show_title': show_title
+        'show_title': show_title,
+        'type': type
       } %}
     {% endif %}