Skip to content
/ docs Public
forked from withastro/docs

Commit

Permalink
i18n(fr): Update guides/cms/builderio from withastro#8259
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Bonnet <[email protected]>
  • Loading branch information
thomasbnt committed Jun 25, 2024
1 parent 160d849 commit cfb7d89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/content/docs/fr/guides/cms/builderio.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ const { results: posts } = await fetch(
<body>
<ul>
{
posts.map(({ data: { slug, title } }) => (
posts.flatMap(({ data: { slug, title } }) => (
<li>
<a href={`/posts/${slug}`}>{title}</a>
</li>
Expand Down Expand Up @@ -318,7 +318,7 @@ const { html: postHTML } = await fetch(
<article>
<Fragment set:html={postHTML} />
</article>
<footer>Ceci est votre footer</footer>
<footer>Voici votre pied de page</footer>
</body>
</html>
```
Expand Down Expand Up @@ -382,4 +382,4 @@ Avec ce webhook en place, chaque fois que vous cliquez sur le bouton **Publish**

## Ressources communautaires

- Lire [Connecter le CMS visuel de Builder.io à Astro](https://www.hamatoyogi.dev/blog/astro-log/connecting-builderio-to-astro) par Yoav Ganbar.
- Lire [Connecter le CMS visuel de Builder.io à Astro](https://www.hamatoyogi.dev/blog/astro-log/connecting-builderio-to-astro) par Yoav Ganbar.

0 comments on commit cfb7d89

Please sign in to comment.