diff --git a/source/_patterns/02-base/macros/uw.macro.twig b/source/_patterns/02-base/macros/uw.macro.twig
new file mode 100644
index 0000000000000000000000000000000000000000..0f8f02ea8f8cbc75264fe637c42ecab90200c389
--- /dev/null
+++ b/source/_patterns/02-base/macros/uw.macro.twig
@@ -0,0 +1,18 @@
+{% macro readmore(url, title, label = "Read more", description_prefix = "about" ) %}
+  {% include '@components/readmore-link/readmore-link.twig' with {
+    'url': url,
+    'label': label,
+    'description_prefix': description_prefix,
+    'title': title
+  } %}
+{% endmacro %}
+
+{% macro tag(url, title, type = "full", size = "normal" ) %}
+  {% include '@components/tag/tag.twig' with {
+    'url': url,
+    'title': title,
+    'type': type,
+    'size': size,
+    'faculty':faculty
+  } %}
+{% endmacro %}
\ No newline at end of file
diff --git a/source/_patterns/04-components/card/card.twig b/source/_patterns/04-components/card/card.twig
index ca6606dd97ec0bcbbc84aa13798da8c84af66e02..64622ca1ecb588a6c0e8d69943d1cfa98a740737 100644
--- a/source/_patterns/04-components/card/card.twig
+++ b/source/_patterns/04-components/card/card.twig
@@ -1,4 +1,4 @@
-{% import '@macros/gesso.macro.twig' as macros %}
+{% import '@base/macros/uw.macro.twig' as macros %}
 
 <article  class="card {{ modifier_classes }} {% if show_hover %} card--show-hover {% endif %}" >
     <div class="card__body">
diff --git a/source/_patterns/04-components/teaser/teaser--blog/teaser--blog.twig b/source/_patterns/04-components/teaser/teaser--blog/teaser--blog.twig
index fd91dae7031e76a05512378160fb72e5a7931824..79daa36c955fb3bf8e52df11674a183d8c729ac4 100644
--- a/source/_patterns/04-components/teaser/teaser--blog/teaser--blog.twig
+++ b/source/_patterns/04-components/teaser/teaser--blog/teaser--blog.twig
@@ -1,7 +1,6 @@
 {% set teaser_modifier_classes -%}
     card--teaser teaser--blog {{ modifier_classes }}
 {%- endset %}
-
 {% include "@components/teaser/teaser.twig" with {
   modifier_classes: teaser_modifier_classes,
   title: title,