added fragments + conf
This commit is contained in:
parent
f41a3a2a85
commit
f339dc7c8e
8 changed files with 317 additions and 142 deletions
|
@ -10,7 +10,7 @@ export default {
|
|||
{
|
||||
text: "Dev",
|
||||
link: "/dev/",
|
||||
activeMatch: "/dev/"
|
||||
activeMatch: "/dev/",
|
||||
// items: [
|
||||
// { text: "Sommaire", link: "/dev/" },
|
||||
// { text: "B1", link: "/dev/B1/" },
|
||||
|
@ -19,7 +19,7 @@ export default {
|
|||
// ]
|
||||
},
|
||||
{ text: "Design", link: "/design/", activeMatch: "/design/" },
|
||||
{ text: "À propos", link: "/a-propos", activeMatch: "/a-propos" }
|
||||
{ text: "À propos", link: "/a-propos", activeMatch: "/a-propos" },
|
||||
],
|
||||
sidebar: {
|
||||
// This sidebar gets displayed when user is
|
||||
|
@ -31,8 +31,42 @@ export default {
|
|||
{ text: "Sommaire", link: "/dev/" }, // /dev/index.md
|
||||
{ text: "Documentations", link: "/dev/docs" },
|
||||
{ text: "Outils", link: "/dev/outils" },
|
||||
{ text: "Les pros", link: "/dev/goat" }
|
||||
]
|
||||
{ text: "Les pros", link: "/dev/goat" },
|
||||
],
|
||||
},
|
||||
{
|
||||
text: "Fragments",
|
||||
collapsible: true,
|
||||
collapsed: true,
|
||||
items: [
|
||||
{
|
||||
text: "HTML",
|
||||
link: "/dev/fragments/html/",
|
||||
items: [
|
||||
{
|
||||
text: "Titres",
|
||||
link: "/dev/fragments/html/01-titres",
|
||||
},
|
||||
{
|
||||
text: "Paragraphe",
|
||||
link: "/dev/fragments/html/02-paragraphe",
|
||||
},
|
||||
{
|
||||
text: "Image",
|
||||
link: "/dev/fragments/html/04-image",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
text: "CSS",
|
||||
items: [
|
||||
{
|
||||
text: "Centrer",
|
||||
link: "/dev/fragments/css/01-centrer",
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
text: "B1",
|
||||
|
@ -40,8 +74,8 @@ export default {
|
|||
collapsed: true,
|
||||
items: [
|
||||
{ text: "Introduction B1", link: "/dev/B1/" },
|
||||
{ text: "HTML B1", link: "/dev/B1/html" }
|
||||
]
|
||||
{ text: "HTML B1", link: "/dev/B1/html" },
|
||||
],
|
||||
},
|
||||
{
|
||||
text: "B2",
|
||||
|
@ -49,8 +83,8 @@ export default {
|
|||
collapsed: true,
|
||||
items: [
|
||||
{ text: "Introduction B2", link: "/dev/B2/" },
|
||||
{ text: "HTML B2", link: "/dev/B2/html" }
|
||||
]
|
||||
{ text: "HTML B2", link: "/dev/B2/html" },
|
||||
],
|
||||
},
|
||||
{
|
||||
text: "B3",
|
||||
|
@ -58,8 +92,8 @@ export default {
|
|||
collapsed: true,
|
||||
items: [
|
||||
{ text: "Introduction B3", link: "/dev/B3/" },
|
||||
{ text: "HTML B3", link: "/dev/B3/html" }
|
||||
]
|
||||
{ text: "HTML B3", link: "/dev/B3/html" },
|
||||
],
|
||||
},
|
||||
{
|
||||
text: "Code Camp",
|
||||
|
@ -67,19 +101,19 @@ export default {
|
|||
collapsed: true,
|
||||
items: [
|
||||
{ text: "Théorie", link: "/dev/code-camp/" },
|
||||
{ text: "Sujets", link: "/dev/code-camp/sujets" }
|
||||
]
|
||||
}
|
||||
{ text: "Sujets", link: "/dev/code-camp/sujets" },
|
||||
],
|
||||
},
|
||||
],
|
||||
"/design/": [
|
||||
{
|
||||
text: "Design",
|
||||
items: [
|
||||
{ text: "Index", link: "/design/" },
|
||||
{ text: "Introduction", link: "/design/introduction" }
|
||||
]
|
||||
}
|
||||
]
|
||||
{ text: "Introduction", link: "/design/introduction" },
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
outlineTitle: "Sur cette page",
|
||||
|
@ -87,24 +121,24 @@ export default {
|
|||
|
||||
footer: {
|
||||
message: "Ces contenus sont publiés sous licence Creative Commons",
|
||||
copyright: "CC BY-SA 4.0"
|
||||
copyright: "CC BY-SA 4.0",
|
||||
},
|
||||
|
||||
docFooter: {
|
||||
prev: "Précédent",
|
||||
next: "Suivant"
|
||||
}
|
||||
next: "Suivant",
|
||||
},
|
||||
},
|
||||
|
||||
editLink: {
|
||||
pattern: "https://gitlab.com/3_w/docs/-/edit/main/docs/:path",
|
||||
text: "Proposer des changements sur Gitlab"
|
||||
text: "Proposer des changements sur Gitlab",
|
||||
},
|
||||
|
||||
markdown: {
|
||||
theme: "one-dark-pro",
|
||||
externalLinks: {
|
||||
target: "_self"
|
||||
}
|
||||
}
|
||||
target: "_self",
|
||||
},
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue