Cards
Info box with optional icon, title, and link.
Card renders an info box with an optional icon, title, and content. Adding href turns the entire card into a clickable link.
Usage
:::card[Title]
Card with title and content.
:::
:::card[Title]{icon="star"}
Card with icon and title.
:::
:::card[Title]{href="/docs/"}
Clickable card link.
:::
:::card{icon="star"}
Card with icon, no title.
:::
:::card
Minimal card, content only.
:::<Card title="Title"> Card with title and content. </Card>
<Card title="Title" icon="star"> Card with icon and title. </Card>
<Card title="Title" href="/docs/"> Clickable card link. </Card>
<Card icon="star"> Card with icon, no title. </Card>
<Card> Minimal card, content only. </Card>