added missing translations + link to references
This commit is contained in:
parent
50fdae2308
commit
ff0ba456a9
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"accueil": "home",
|
||||
"tagline": "Freelance web designer and front-end developer.",
|
||||
"tagline": "Freelance web developer specialized in accessibility.",
|
||||
"copyright": "(re)Made with Astro",
|
||||
"contact": {
|
||||
"title": "contact",
|
||||
|
@ -45,6 +45,9 @@
|
|||
"lienRetour": "Back to the home page"
|
||||
},
|
||||
"seo": {
|
||||
"meta": {
|
||||
"description": "Web developer specialized in accessibility and eco-design in Toulouse, France. Development of custom websites, RGAA compliance, maintenance, etc."
|
||||
},
|
||||
"article": {
|
||||
"title": "Articles",
|
||||
"description": "A few articles about graphic design and front-end development."
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"accueil": "accueil",
|
||||
"tagline": "Designer et developpeur web freelance à Toulouse.",
|
||||
"tagline": "Développeur web spécialisé en accessibilité.",
|
||||
"copyright": "(re)Fait avec Astro",
|
||||
"contact": {
|
||||
"title": "contact",
|
||||
|
@ -45,6 +45,9 @@
|
|||
"lienRetour": "Retour à l’accueil"
|
||||
},
|
||||
"seo": {
|
||||
"meta": {
|
||||
"description": "Développeur web spécialisé en accessibilité numérique et éco-conception à Toulouse. Création de sites web sur mesure, mise en conformité RGAA, maintenance, etc."
|
||||
},
|
||||
"article": {
|
||||
"title": "Articles",
|
||||
"description": "Quelques articles sur le développement web front-end et l'informatique à Toulouse."
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
import { astroI18n } from "astro-i18n";
|
||||
import { t, astroI18n } from "astro-i18n";
|
||||
astroI18n.init(Astro);
|
||||
|
||||
import "../styles/style.css";
|
||||
|
@ -17,13 +17,10 @@ const { pageTitle, titleColor } = Astro.props;
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>{pageTitle} - Nicolas Arduin</title>
|
||||
<meta
|
||||
name="description"
|
||||
content="Création et développement de sites web sobres et accessibles. Freelance à Toulouse."
|
||||
/>
|
||||
<meta name="description" content={t("seo.meta.description")} />
|
||||
<meta name="robots" content="index,follow." />
|
||||
<meta name="author" content="Nicolas Arduin" />
|
||||
<meta name="subject" content="Développement de sites web" />
|
||||
<meta name="subject" content="Développement de sites web, accessibilité." />
|
||||
</head>
|
||||
<body>
|
||||
<div class="wrapper">
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
---
|
||||
import Page from "../../travaux/[slug].astro"
|
||||
|
||||
export { getStaticPaths } from "../../travaux/[slug].astro"
|
||||
|
||||
const { props } = Astro
|
||||
---
|
||||
|
||||
<Page {...props} />
|
|
@ -61,6 +61,11 @@ const pageTitle = t("sitemap");
|
|||
}
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<h2>
|
||||
<a href={l("/references")}>{t("references.titre")}</a>
|
||||
</h2>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</BaseLayout>
|
||||
|
|
Loading…
Reference in New Issue