website-astro/src/pages/index.astro

11 lines
219 B
Text
Raw Normal View History

2022-12-02 10:21:18 +00:00
---
2022-12-02 16:29:11 +00:00
import { t, l } from "astro-i18n";
import BaseLayout from "../layouts/BaseLayout.astro";
2022-12-02 10:21:18 +00:00
2022-12-02 16:29:11 +00:00
const pageTitle = t("accueil");
2022-12-02 10:21:18 +00:00
---
<BaseLayout pageTitle={pageTitle}>
2022-12-02 16:29:11 +00:00
<h1 set:html={t("index.title")}></h1>
2022-12-02 10:21:18 +00:00
</BaseLayout>