mirror of
https://github.com/imfing/hextra.git
synced 2025-05-13 13:16:26 -04:00

* update dev and build command chore: move contents to exampleSite chore: add configs to exampleSite chore: use tailwindcss/nesting * add postcss-import * move imports to the top chore: add config for theme dev chore: add compiled css chore: fix last updated issue chore: dont't ignore hugo_stats.json chore: update index page layout
23 lines
454 B
Markdown
23 lines
454 B
Markdown
---
|
|
title: Cards Component
|
|
linkTitle: Cards
|
|
---
|
|
|
|
## Example
|
|
|
|
{{< cards >}}
|
|
{{< card link="/" title="Callout" icon="warning" >}}
|
|
{{< card link="/" title="GitHub" icon="github" >}}
|
|
{{< card link="/" title="No Icon" >}}
|
|
{{< /cards >}}
|
|
|
|
## Usage
|
|
|
|
```
|
|
{{</* cards */>}}
|
|
{{</* card link="/" title="Callout" icon="warning" */>}}
|
|
{{</* card link="/" title="GitHub" icon="github" */>}}
|
|
{{</* card link="/" title="No Icon" */>}}
|
|
{{</* /cards */>}}
|
|
```
|