You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Explore the features and customization options of the Unfold card component
5
+
---
6
+
7
+
# Card component
8
+
9
+
A card is a versatile content container used to visually separate and organize distinct sections within your layout. It helps to group related information, making your dashboard or page easier to read and navigate. Use the card component whenever you want to highlight or isolate content in a clean and structured manner.
10
+
11
+
```html
12
+
{% load i18n unfold %}
13
+
14
+
{% trans "Card component title" as custom_title %}
15
+
16
+
{% capture as custom_action %}
17
+
{% component "unfold/componentes/button.html" %}
18
+
Do something
19
+
{% endcomponent}
20
+
{% endcapture %}
21
+
22
+
{% component "unfold/components/card.html" with title=custom_title action=custom_action %}
0 commit comments