2022-07-16 12:04:51 +02:00
|
|
|
|
export default {
|
|
|
|
|
lang: "fr",
|
|
|
|
|
title: "3W",
|
|
|
|
|
titleTemplate: "Support de cours",
|
|
|
|
|
description: "C’est cool je crois.",
|
|
|
|
|
lastUpdated: true,
|
|
|
|
|
|
|
|
|
|
themeConfig: {
|
|
|
|
|
nav: [
|
|
|
|
|
{
|
|
|
|
|
text: "Dev",
|
2022-07-29 17:21:46 +02:00
|
|
|
|
link: "/dev/",
|
|
|
|
|
activeMatch: "/dev/"
|
|
|
|
|
// items: [
|
|
|
|
|
// { text: "Sommaire", link: "/dev/" },
|
|
|
|
|
// { text: "B1", link: "/dev/B1/" },
|
|
|
|
|
// { text: "B2", link: "/dev/B2/" },
|
|
|
|
|
// { text: "B3", link: "/dev/B3/" }
|
|
|
|
|
// ]
|
2022-07-16 12:04:51 +02:00
|
|
|
|
},
|
2022-07-29 17:21:46 +02:00
|
|
|
|
{ text: "Design", link: "/design/", activeMatch: "/design/" },
|
|
|
|
|
{ text: "À propos", link: "/a-propos", activeMatch: "/a-propos" }
|
2022-07-16 12:04:51 +02:00
|
|
|
|
],
|
|
|
|
|
sidebar: {
|
|
|
|
|
// This sidebar gets displayed when user is
|
|
|
|
|
// under `dev` directory.
|
|
|
|
|
"/dev/": [
|
|
|
|
|
{
|
|
|
|
|
text: "Général",
|
|
|
|
|
items: [
|
|
|
|
|
{ text: "Sommaire", link: "/dev/" }, // /dev/index.md
|
|
|
|
|
{ text: "Documentations", link: "/dev/docs" },
|
2022-08-08 11:22:25 +02:00
|
|
|
|
{ text: "Outils", link: "/dev/outils" },
|
|
|
|
|
{ text: "Les pros", link: "/dev/goat" }
|
2022-07-16 12:04:51 +02:00
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: "B1",
|
|
|
|
|
collapsible: true,
|
|
|
|
|
collapsed: true,
|
|
|
|
|
items: [
|
2022-08-08 11:22:25 +02:00
|
|
|
|
{ text: "Introduction B1", link: "/dev/B1/" },
|
|
|
|
|
{ text: "HTML B1", link: "/dev/B1/html" }
|
2022-07-16 12:04:51 +02:00
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: "B2",
|
|
|
|
|
collapsible: true,
|
|
|
|
|
collapsed: true,
|
|
|
|
|
items: [
|
2022-08-08 11:22:25 +02:00
|
|
|
|
{ text: "Introduction B2", link: "/dev/B2/" },
|
|
|
|
|
{ text: "HTML B2", link: "/dev/B2/html" }
|
2022-07-16 12:04:51 +02:00
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: "B3",
|
|
|
|
|
collapsible: true,
|
|
|
|
|
collapsed: true,
|
|
|
|
|
items: [
|
2022-08-08 11:22:25 +02:00
|
|
|
|
{ text: "Introduction B3", link: "/dev/B3/" },
|
|
|
|
|
{ text: "HTML B3", link: "/dev/B3/html" }
|
2022-07-16 12:04:51 +02:00
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: "Code Camp",
|
|
|
|
|
collapsible: true,
|
|
|
|
|
collapsed: true,
|
2022-07-30 18:02:39 +02:00
|
|
|
|
items: [
|
|
|
|
|
{ text: "Théorie", link: "/dev/code-camp/" },
|
|
|
|
|
{ text: "Sujets", link: "/dev/code-camp/sujets" }
|
|
|
|
|
]
|
2022-07-16 12:04:51 +02:00
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"/design/": [
|
|
|
|
|
{
|
|
|
|
|
text: "Design",
|
|
|
|
|
items: [
|
|
|
|
|
{ text: "Index", link: "/design/" },
|
|
|
|
|
{ text: "Introduction", link: "/design/introduction" }
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
outlineTitle: "Sur cette page",
|
|
|
|
|
lastUpdatedText: "Mis à jour le",
|
|
|
|
|
|
|
|
|
|
footer: {
|
|
|
|
|
message: "Ces contenus sont publiés sous licence Creative Commons",
|
2022-08-01 17:45:53 +02:00
|
|
|
|
copyright: "CC BY-SA 4.0"
|
2022-07-16 12:04:51 +02:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
docFooter: {
|
|
|
|
|
prev: "Précédent",
|
|
|
|
|
next: "Suivant"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
markdown: {
|
|
|
|
|
theme: "one-dark-pro",
|
|
|
|
|
externalLinks: {
|
|
|
|
|
target: "_self"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|