i18n updates + HP + components
This commit is contained in:
parent
1ab35db47d
commit
23c79e579c
67 changed files with 1355 additions and 542 deletions
15
src/components/ListCards.astro
Normal file
15
src/components/ListCards.astro
Normal file
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
const { list, routeName } = Astro.props;
|
||||
|
||||
import CardEditorial from "./CardEditorial.astro";
|
||||
---
|
||||
|
||||
<ul role="list">
|
||||
{
|
||||
list.map((item) => (
|
||||
<li class="list__item">
|
||||
<CardEditorial item={item} routeName={routeName} />
|
||||
</li>
|
||||
))
|
||||
}
|
||||
</ul>
|
Loading…
Add table
Add a link
Reference in a new issue