.toml` et inspirez vous du thème `themes/hugo-theme-learn/i18n/en.toml`
-
-D'ailleurs, ces traductions pour servir à tout le monde, donc svp prenez le temps de [proposer une Pull Request](https://github.com/matcornic/hugo-theme-learn/pulls) !
-
-## Désactiver le changement de langue
-
-Vous pouvez changer de langue directement dans le navigateur. C'est une super fonctionnalité, mais vous avez peut-être besoin de la désactiver.
-
-Pour ce faire, ajouter le paramètre `disableLanguageSwitchingButton=true` dans votre `config.toml`
-
-```toml
-[params]
- # Quand vous utilisez un site en multi-langue, désactive le bouton de changment de langue.
- disableLanguageSwitchingButton = true
-```
-
-![I18n menu](/en/cont/i18n/images/i18n-menu.gif)
\ No newline at end of file
diff --git a/exampleSite/content/cont/markdown.fr.md b/exampleSite/content/cont/markdown.fr.md
deleted file mode 100644
index e734b31cd9..0000000000
--- a/exampleSite/content/cont/markdown.fr.md
+++ /dev/null
@@ -1,666 +0,0 @@
----
-date: 2016-04-09T16:50:16+02:00
-title: Syntaxe Markdown
-weight: 15
----
-
-{{% notice note %}}
-Cette page est une copie de la [doc de Grav](http://learn.getgrav.org/content/markdown).
-La seule différence porte sur la personalisation des images ([taille]({{< relref "#resizing-image" >}}), [ajout de classes CSS]({{< relref "#add-css-classes" >}})...)
-Pour des raisons évidentes, cette page n'a pas été traduites en français 😁
-{{% /notice%}}
-
-Let's face it: Writing content for the Web is tiresome. WYSIWYG editors help alleviate this task, but they generally result in horrible code, or worse yet, ugly web pages.
-
-**Markdown** is a better way to write **HTML**, without all the complexities and ugliness that usually accompanies it.
-
-Some of the key benefits are:
-
-1. Markdown is simple to learn, with minimal extra characters so it's also quicker to write content.
-2. Less chance of errors when writing in markdown.
-3. Produces valid XHTML output.
-4. Keeps the content and the visual display separate, so you cannot mess up the look of your site.
-5. Write in any text editor or Markdown application you like.
-6. Markdown is a joy to use!
-
-John Gruber, the author of Markdown, puts it like this:
-
-> The overriding design goal for Markdown’s formatting syntax is to make it as readable as possible. The idea is that a Markdown-formatted document should be publishable as-is, as plain text, without looking like it’s been marked up with tags or formatting instructions. While Markdown’s syntax has been influenced by several existing text-to-HTML filters, the single biggest source of inspiration for Markdown’s syntax is the format of plain text email.
-> -- John Gruber
-
-
-Grav ships with built-in support for [Markdown](http://daringfireball.net/projects/markdown/) and [Markdown Extra](https://michelf.ca/projects/php-markdown/extra/). You must enable **Markdown Extra** in your `system.yaml` configuration file
-
-Without further delay, let us go over the main elements of Markdown and what the resulting HTML looks like:
-
-{{% notice info %}}
- Bookmark this page for easy future reference!
-{{% /notice %}}
-
-## Headings
-
-Headings from `h1` through `h6` are constructed with a `#` for each level:
-
-```markdown
-# h1 Heading
-## h2 Heading
-### h3 Heading
-#### h4 Heading
-##### h5 Heading
-###### h6 Heading
-```
-
-Renders to:
-
-# h1 Heading
-## h2 Heading
-### h3 Heading
-#### h4 Heading
-##### h5 Heading
-###### h6 Heading
-
-HTML:
-
-```html
-h1 Heading
-h2 Heading
-h3 Heading
-h4 Heading
-h5 Heading
-h6 Heading
-```
-
-## Comments
-
-Comments should be HTML compatible
-
-```html
-
-```
-Comment below should **NOT** be seen:
-
-
-
-
-## Horizontal Rules
-
-The HTML `
` element is for creating a "thematic break" between paragraph-level elements. In markdown, you can create a `
` with any of the following:
-
-* `___`: three consecutive underscores
-* `---`: three consecutive dashes
-* `***`: three consecutive asterisks
-
-renders to:
-
-___
-
----
-
-***
-
-
-## Body Copy
-
-Body copy written as normal, plain text will be wrapped with `` tags in the rendered HTML.
-
-So this body copy:
-
-```markdown
-Lorem ipsum dolor sit amet, graecis denique ei vel, at duo primis mandamus. Et legere ocurreret pri, animal tacimates complectitur ad cum. Cu eum inermis inimicus efficiendi. Labore officiis his ex, soluta officiis concludaturque ei qui, vide sensibus vim ad.
-```
-renders to this HTML:
-
-```html
-Lorem ipsum dolor sit amet, graecis denique ei vel, at duo primis mandamus. Et legere ocurreret pri, animal tacimates complectitur ad cum. Cu eum inermis inimicus efficiendi. Labore officiis his ex, soluta officiis concludaturque ei qui, vide sensibus vim ad.
-```
-
-## Emphasis
-
-### Bold
-For emphasizing a snippet of text with a heavier font-weight.
-
-The following snippet of text is **rendered as bold text**.
-
-```markdown
-**rendered as bold text**
-```
-renders to:
-
-**rendered as bold text**
-
-and this HTML
-
-```html
-rendered as bold text
-```
-
-### Italics
-For emphasizing a snippet of text with italics.
-
-The following snippet of text is _rendered as italicized text_.
-
-```markdown
-_rendered as italicized text_
-```
-
-renders to:
-
-_rendered as italicized text_
-
-and this HTML:
-
-```html
-rendered as italicized text
-```
-
-
-### strikethrough
-In GFM (GitHub flavored Markdown) you can do strikethroughs.
-
-```markdown
-~~Strike through this text.~~
-```
-Which renders to:
-
-~~Strike through this text.~~
-
-HTML:
-
-```html
-Strike through this text.
-```
-
-## Blockquotes
-
-For quoting blocks of content from another source within your document.
-
-Add `>` before any text you want to quote.
-
-```markdown
-> **Fusion Drive** combines a hard drive with a flash storage (solid-state drive) and presents it as a single logical volume with the space of both drives combined.
-```
-
-Renders to:
-
-> **Fusion Drive** combines a hard drive with a flash storage (solid-state drive) and presents it as a single logical volume with the space of both drives combined.
-
-and this HTML:
-
-```html
-
- Fusion Drive combines a hard drive with a flash storage (solid-state drive) and presents it as a single logical volume with the space of both drives combined.
-
-```
-
-Blockquotes can also be nested:
-
-```markdown
-> Donec massa lacus, ultricies a ullamcorper in, fermentum sed augue. Nunc augue augue, aliquam non hendrerit ac, commodo vel nisi.
->
-> > Sed adipiscing elit vitae augue consectetur a gravida nunc vehicula. Donec auctor odio non est accumsan facilisis. Aliquam id turpis in dolor tincidunt mollis ac eu diam.
->
-> Mauris sit amet ligula egestas, feugiat metus tincidunt, luctus libero. Donec congue finibus tempor. Vestibulum aliquet sollicitudin erat, ut aliquet purus posuere luctus.
-```
-
-Renders to:
-
-> Donec massa lacus, ultricies a ullamcorper in, fermentum sed augue. Nunc augue augue, aliquam non hendrerit ac, commodo vel nisi.
->
-> > Sed adipiscing elit vitae augue consectetur a gravida nunc vehicula. Donec auctor odio non est accumsan facilisis. Aliquam id turpis in dolor tincidunt mollis ac eu diam.
->
-> Mauris sit amet ligula egestas, feugiat metus tincidunt, luctus libero. Donec congue finibus tempor. Vestibulum aliquet sollicitudin erat, ut aliquet purus posuere luctus.
-
-## Notices
-
-{{% notice note %}}
-The old mechanism for notices overriding the block quote syntax (`>>>`) has been deprecated. Notices are now handled via a dedicated plugin called [Markdown Notices](https://github.com/getgrav/grav-plugin-markdown-notices)
-{{% /notice %}}
-
-## Lists
-
-### Unordered
-A list of items in which the order of the items does not explicitly matter.
-
-You may use any of the following symbols to denote bullets for each list item:
-
-```markdown
-* valid bullet
-- valid bullet
-+ valid bullet
-```
-
-For example
-
-```markdown
-+ Lorem ipsum dolor sit amet
-+ Consectetur adipiscing elit
-+ Integer molestie lorem at massa
-+ Facilisis in pretium nisl aliquet
-+ Nulla volutpat aliquam velit
- - Phasellus iaculis neque
- - Purus sodales ultricies
- - Vestibulum laoreet porttitor sem
- - Ac tristique libero volutpat at
-+ Faucibus porta lacus fringilla vel
-+ Aenean sit amet erat nunc
-+ Eget porttitor lorem
-```
-Renders to:
-
-+ Lorem ipsum dolor sit amet
-+ Consectetur adipiscing elit
-+ Integer molestie lorem at massa
-+ Facilisis in pretium nisl aliquet
-+ Nulla volutpat aliquam velit
- - Phasellus iaculis neque
- - Purus sodales ultricies
- - Vestibulum laoreet porttitor sem
- - Ac tristique libero volutpat at
-+ Faucibus porta lacus fringilla vel
-+ Aenean sit amet erat nunc
-+ Eget porttitor lorem
-
-And this HTML
-
-```html
-
- - Lorem ipsum dolor sit amet
- - Consectetur adipiscing elit
- - Integer molestie lorem at massa
- - Facilisis in pretium nisl aliquet
- - Nulla volutpat aliquam velit
-
- - Phasellus iaculis neque
- - Purus sodales ultricies
- - Vestibulum laoreet porttitor sem
- - Ac tristique libero volutpat at
-
-
- - Faucibus porta lacus fringilla vel
- - Aenean sit amet erat nunc
- - Eget porttitor lorem
-
-```
-
-### Ordered
-
-A list of items in which the order of items does explicitly matter.
-
-```markdown
-1. Lorem ipsum dolor sit amet
-2. Consectetur adipiscing elit
-3. Integer molestie lorem at massa
-4. Facilisis in pretium nisl aliquet
-5. Nulla volutpat aliquam velit
-6. Faucibus porta lacus fringilla vel
-7. Aenean sit amet erat nunc
-8. Eget porttitor lorem
-```
-Renders to:
-
-1. Lorem ipsum dolor sit amet
-2. Consectetur adipiscing elit
-3. Integer molestie lorem at massa
-4. Facilisis in pretium nisl aliquet
-5. Nulla volutpat aliquam velit
-6. Faucibus porta lacus fringilla vel
-7. Aenean sit amet erat nunc
-8. Eget porttitor lorem
-
-And this HTML:
-
-```html
-
- - Lorem ipsum dolor sit amet
- - Consectetur adipiscing elit
- - Integer molestie lorem at massa
- - Facilisis in pretium nisl aliquet
- - Nulla volutpat aliquam velit
- - Faucibus porta lacus fringilla vel
- - Aenean sit amet erat nunc
- - Eget porttitor lorem
-
-```
-
-**TIP**: If you just use `1.` for each number, Markdown will automatically number each item. For example:
-
-```markdown
-1. Lorem ipsum dolor sit amet
-1. Consectetur adipiscing elit
-1. Integer molestie lorem at massa
-1. Facilisis in pretium nisl aliquet
-1. Nulla volutpat aliquam velit
-1. Faucibus porta lacus fringilla vel
-1. Aenean sit amet erat nunc
-1. Eget porttitor lorem
-```
-
-Renders to:
-
-1. Lorem ipsum dolor sit amet
-2. Consectetur adipiscing elit
-3. Integer molestie lorem at massa
-4. Facilisis in pretium nisl aliquet
-5. Nulla volutpat aliquam velit
-6. Faucibus porta lacus fringilla vel
-7. Aenean sit amet erat nunc
-8. Eget porttitor lorem
-
-## Code
-
-### Inline code
-Wrap inline snippets of code with `` ` ``.
-
-```markdown
-In this example, `` should be wrapped as **code**.
-```
-
-Renders to:
-
-In this example, `` should be wrapped with **code**.
-
-HTML:
-
-```html
-In this example, <section></section>
should be wrapped with code.
-```
-
-### Indented code
-
-Or indent several lines of code by at least four spaces, as in:
-
-
- // Some comments
- line 1 of code
- line 2 of code
- line 3 of code
-
-
-Renders to:
-
- // Some comments
- line 1 of code
- line 2 of code
- line 3 of code
-
-HTML:
-
-```html
-
-
- // Some comments
- line 1 of code
- line 2 of code
- line 3 of code
-
-
-```
-
-
-### Block code "fences"
-
-Use "fences" ```` ``` ```` to block in multiple lines of code.
-
-
-``` markup
-Sample text here...
-```
-
-
-
-```
-Sample text here...
-```
-
-HTML:
-
-```html
-
- Sample text here...
-
-```
-
-### Syntax highlighting
-
-GFM, or "GitHub Flavored Markdown" also supports syntax highlighting. To activate it, simply add the file extension of the language you want to use directly after the first code "fence", ` ```js `, and syntax highlighting will automatically be applied in the rendered HTML. For example, to apply syntax highlighting to JavaScript code:
-
-
-```js
-grunt.initConfig({
- assemble: {
- options: {
- assets: 'docs/assets',
- data: 'src/data/*.{json,yml}',
- helpers: 'src/custom-helpers.js',
- partials: ['src/partials/**/*.{hbs,md}']
- },
- pages: {
- options: {
- layout: 'default.hbs'
- },
- files: {
- './': ['src/templates/pages/index.hbs']
- }
- }
- }
-};
-```
-
-
-Renders to:
-
-```js
-grunt.initConfig({
- assemble: {
- options: {
- assets: 'docs/assets',
- data: 'src/data/*.{json,yml}',
- helpers: 'src/custom-helpers.js',
- partials: ['src/partials/**/*.{hbs,md}']
- },
- pages: {
- options: {
- layout: 'default.hbs'
- },
- files: {
- './': ['src/templates/pages/index.hbs']
- }
- }
- }
-};
-```
-
-## Tables
-Tables are created by adding pipes as dividers between each cell, and by adding a line of dashes (also separated by bars) beneath the header. Note that the pipes do not need to be vertically aligned.
-
-
-```markdown
-| Option | Description |
-| ------ | ----------- |
-| data | path to data files to supply the data that will be passed into templates. |
-| engine | engine to be used for processing templates. Handlebars is the default. |
-| ext | extension to be used for dest files. |
-```
-
-Renders to:
-
-| Option | Description |
-| ------ | ----------- |
-| data | path to data files to supply the data that will be passed into templates. |
-| engine | engine to be used for processing templates. Handlebars is the default. |
-| ext | extension to be used for dest files. |
-
-And this HTML:
-
-```html
-
-
- Option |
- Description |
-
-
- data |
- path to data files to supply the data that will be passed into templates. |
-
-
- engine |
- engine to be used for processing templates. Handlebars is the default. |
-
-
- ext |
- extension to be used for dest files. |
-
-
-```
-
-### Right aligned text
-
-Adding a colon on the right side of the dashes below any heading will right align text for that column.
-
-```markdown
-| Option | Description |
-| ------:| -----------:|
-| data | path to data files to supply the data that will be passed into templates. |
-| engine | engine to be used for processing templates. Handlebars is the default. |
-| ext | extension to be used for dest files. |
-```
-
-| Option | Description |
-| ------:| -----------:|
-| data | path to data files to supply the data that will be passed into templates. |
-| engine | engine to be used for processing templates. Handlebars is the default. |
-| ext | extension to be used for dest files. |
-
-## Links
-
-### Basic link
-
-```markdown
-[Assemble](http://assemble.io)
-```
-
-Renders to (hover over the link, there is no tooltip):
-
-[Assemble](http://assemble.io)
-
-HTML:
-
-```html
-Assemble
-```
-
-
-### Add a title
-
-```markdown
-[Upstage](https://github.com/upstage/ "Visit Upstage!")
-```
-
-Renders to (hover over the link, there should be a tooltip):
-
-[Upstage](https://github.com/upstage/ "Visit Upstage!")
-
-HTML:
-
-```html
-Upstage
-```
-
-### Named Anchors
-
-Named anchors enable you to jump to the specified anchor point on the same page. For example, each of these chapters:
-
-```markdown
-# Table of Contents
- * [Chapter 1](#chapter-1)
- * [Chapter 2](#chapter-2)
- * [Chapter 3](#chapter-3)
-```
-will jump to these sections:
-
-```markdown
-## Chapter 1
-Content for chapter one.
-
-## Chapter 2
-Content for chapter one.
-
-## Chapter 3
-Content for chapter one.
-```
-**NOTE** that specific placement of the anchor tag seems to be arbitrary. They are placed inline here since it seems to be unobtrusive, and it works.
-
-
-## Images {#images}
-Images have a similar syntax to links but include a preceding exclamation point.
-
-```markdown
-![Minion](https://octodex.github.com/images/minion.png)
-```
-![Minion](https://octodex.github.com/images/minion.png)
-
-or
-```markdown
-![Alt text](https://octodex.github.com/images/stormtroopocat.jpg "The Stormtroopocat")
-```
-![Alt text](https://octodex.github.com/images/stormtroopocat.jpg "The Stormtroopocat")
-
-Like links, Images also have a footnote style syntax
-
-### Alternative usage : note images
-
-```markdown
-![Alt text][id]
-```
-![Alt text][id]
-
-With a reference later in the document defining the URL location:
-
-[id]: https://octodex.github.com/images/dojocat.jpg "The Dojocat"
-
- [id]: https://octodex.github.com/images/dojocat.jpg "The Dojocat"
-
-### Resizing image
-
-Add HTTP parameters `width` and/or `height` to the link image to resize the image. Values are CSS values (default is `auto`).
-
-```markdown
-![Minion](https://octodex.github.com/images/minion.png?width=20pc)
-```
-
-![Minion](https://octodex.github.com/images/minion.png?width=20pc)
-
-```markdown
-![Minion](https://octodex.github.com/images/minion.png?height=50px)
-```
-
-![Minion](https://octodex.github.com/images/minion.png?height=50px)
-
-```markdown
-![Minion](https://octodex.github.com/images/minion.png?height=50px&width=300px)
-```
-
-![Minion](https://octodex.github.com/images/minion.png?height=50px&width=300px)
-
-### Add CSS classes
-
-Add a HTTP `classes` parameter to the link image to add CSS classes. `shadow`and `border` are available but you could define other ones.
-
-```markdown
-![stormtroopocat](https://octodex.github.com/images/stormtroopocat.jpg?classes=shadow)
-```
-![stormtroopocat](https://octodex.github.com/images/stormtroopocat.jpg?width=40pc&classes=shadow)
-
-```markdown
-![stormtroopocat](https://octodex.github.com/images/stormtroopocat.jpg?classes=border)
-```
-![stormtroopocat](https://octodex.github.com/images/stormtroopocat.jpg?width=40pc&classes=border)
-
-```markdown
-![stormtroopocat](https://octodex.github.com/images/stormtroopocat.jpg?classes=border,shadow)
-```
-![stormtroopocat](https://octodex.github.com/images/stormtroopocat.jpg?width=40pc&classes=border,shadow)
diff --git a/exampleSite/content/cont/menushortcuts.fr.md b/exampleSite/content/cont/menushortcuts.fr.md
deleted file mode 100644
index 886067906c..0000000000
--- a/exampleSite/content/cont/menushortcuts.fr.md
+++ /dev/null
@@ -1,109 +0,0 @@
----
-date: 2016-04-09T16:50:16+02:00
-title: Raccourcis du menu
-weight: 25
----
-
-Vous pouvez définir des entrées ou raccourcis supplémentaires dans le menu sans avoir besoin d'être lié à un contenu du site.
-
-## Configuration simple
-
-Editez le fichier de configuration `config.toml` et ajoutez une entrée `[[menu.shortcuts]]` pour chaque lien que vous voulez ajouter.
-
-Exemple pour ce site:
-
- [[menu.shortcuts]]
- name = " Github repo"
- identifier = "ds"
- url = "https://github.com/matcornic/hugo-theme-learn"
- weight = 10
-
- [[menu.shortcuts]]
- name = " Showcases"
- url = "/showcase"
- weight = 11
-
- [[menu.shortcuts]]
- name = " Hugo Documentation"
- identifier = "hugodoc"
- url = "https://gohugo.io/"
- weight = 20
-
- [[menu.shortcuts]]
- name = " Credits"
- url = "/credits"
- weight = 30
-
-Par défaut, les raccourcis sont précédés par un titre. Ce titre peut être désactivé en ajouter le paramètre `disableShortcutsTitle=true` dans la section `params` de votre `config.toml`.
-Cependant, si vous voulez garder le titre mais changer sa valeur, vous pouvez modifier votre configuration multilangue locale en changeant les *translation string*.
-
-Par exemple, dans votre fichier local `i18n/en.toml`, ajouter le contenu
-
- [Shortcuts-Title]
- other = ""
-
-Plus d'infos sur [les menus Hugo](https://gohugo.io/extras/menus/) et sur [les translations strings](https://gohugo.io/content-management/multilingual/#translation-of-strings)
-
-## Configuration pour le mode multi-langue {#i18n}
-
-Quand vous utilisez un site multi-langue, vous pouvez avoir des menus différents pour chaque langage. Dans le fichier de configuration `config.toml`, préfixez votre configuration par `Languages.`.
-
-
-Par exemple, avec ce site :
-
- [Languages]
- [Languages.en]
- title = "Documentation for Hugo Learn Theme"
- weight = 1
- languageName = "English"
-
- [[Languages.en.menu.shortcuts]]
- name = " Github repo"
- identifier = "ds"
- url = "https://github.com/matcornic/hugo-theme-learn"
- weight = 10
-
- [[Languages.en.menu.shortcuts]]
- name = " Showcases"
- url = "/showcase"
- weight = 11
-
- [[Languages.en.menu.shortcuts]]
- name = " Hugo Documentation"
- identifier = "hugodoc"
- url = "https://gohugo.io/"
- weight = 20
-
- [[Languages.en.menu.shortcuts]]
- name = " Credits"
- url = "/credits"
- weight = 30
-
- [Languages.fr]
- title = "Documentation du thème Hugo Learn"
- weight = 2
- languageName = "Français"
-
- [[Languages.fr.menu.shortcuts]]
- name = " Repo Github"
- identifier = "ds"
- url = "https://github.com/matcornic/hugo-theme-learn"
- weight = 10
-
- [[Languages.fr.menu.shortcuts]]
- name = " Vitrine"
- url = "/showcase"
- weight = 11
-
- [[Languages.fr.menu.shortcuts]]
- name = " Documentation Hugo"
- identifier = "hugodoc"
- url = "https://gohugo.io/"
- weight = 20
-
- [[Languages.fr.menu.shortcuts]]
- name = " Crédits"
- url = "/credits"
- weight = 30
-
-Plus d'infos sur [les menus Hugo](https://gohugo.io/extras/menus/) et les [menus multi-langue Hugo](https://gohugo.io/content-management/multilingual/#menus)
\ No newline at end of file
diff --git a/exampleSite/content/cont/pages/_index.fr.md b/exampleSite/content/cont/pages/_index.fr.md
deleted file mode 100644
index 50c6f256bc..0000000000
--- a/exampleSite/content/cont/pages/_index.fr.md
+++ /dev/null
@@ -1,146 +0,0 @@
----
-date: 2016-04-09T16:50:16+02:00
-title: Organisation des pages
-weight: 5
----
-
-Dans **Hugo**, les pages sont le cœur de votre site. Une fois configurées, les pages sont la valeur ajoutée de votre site de documentation.
-
-## Dossiers
-
-Organisez votre site comme n'importe quel autre [projet Hugo](https://gohugo.io/content/organization/). Typiquement, vous allez avoir un dossier *content* avec vos pages.
-
- content
- ├── niveau-un
- │ ├── niveau-deux
- │ │ ├── niveau-trois
- │ │ │ ├── niveau-quatre
- │ │ │ │ ├── _index.md <-- /niveau-un/niveau-deux/niveau-trois/niveau-quatre
- │ │ │ │ ├── page-4-a.md <-- /niveau-un/niveau-deux/niveau-trois/niveau-quatre/page-4-a
- │ │ │ │ ├── page-4-b.md <-- /niveau-un/niveau-deux/niveau-trois/niveau-quatre/page-4-b
- │ │ │ │ └── page-4-c.md <-- /niveau-un/niveau-deux/niveau-trois/niveau-quatre/page-4-c
- │ │ │ ├── _index.md <-- /niveau-un/niveau-deux/niveau-trois
- │ │ │ ├── page-3-a.md <-- /niveau-un/niveau-deux/niveau-trois/page-3-a
- │ │ │ ├── page-3-b.md <-- /niveau-un/niveau-deux/niveau-trois/page-3-b
- │ │ │ └── page-3-c.md <-- /niveau-un/niveau-deux/niveau-trois/page-3-c
- │ │ ├── _index.md <-- /niveau-un/niveau-deux
- │ │ ├── page-2-a.md <-- /niveau-un/niveau-deux/page-2-a
- │ │ ├── page-2-b.md <-- /niveau-un/niveau-deux/page-2-b
- │ │ └── page-2-c.md <-- /niveau-un/niveau-deux/page-2-c
- │ ├── _index.md <-- /niveau-un
- │ ├── page-1-a.md <-- /niveau-un/page-1-a
- │ ├── page-1-b.md <-- /niveau-un/page-1-b
- │ └── page-1-c.md <-- /niveau-un/page-1-c
- ├── _index.md <-- /
- └── premiere-page.md <-- /premiere-page
-
-{{% notice note %}}
-Le fichier `_index.md` est obligatoire dans chaque dossier, c'est en quelque sorte votre page d'accueil pour le dossier.
-{{% /notice %}}
-
-## Types
-
-**Hugo-theme-learn** définit deux types de pages. *Défaut* et *Chapitre*. Les deux sont utilisables à n'importe quel niveau du site, la seule différence est dans l'affichage.
-
-Un **Chapitre** affiche une page vouée à être une introduction pour un ensemble de pages filles. Habituellement, il va seulement contenir un titre et un résumé de la section.
-Vous pouvez définir n'importe quel contenu HTML comme préfixe de l'entrée du menu. Dans l'exemple ci-dessous, c'est juste un nombre mais vous pourriez utiliser une [icône](https://fortawesome.github.io/Font-Awesome/).
-
-![Page Chapitre](/en/cont/pages/images/pages-chapter.png?width=50pc)
-
-```markdown
-+++
-title = "Démarrage"
-weight = 5
-pre = "1. "
-chapter = true
-+++
-
-### Chapitre 1
-
-# Démarrage
-
-Découvrez comment utiliser ce thème Hugo et apprenez en les concepts
-```
-
-Pour dire à **Hugo-theme-learn** de considérer la page comme un chapitre, configure `chapter=true` dans le Front Matter de la page.
-
-Une page **Défaut** est n'importe quelle autre page.
-
-![Page défaut](/en/cont/pages/images/pages-default.png?width=50pc)
-
- +++
- title = "Installation"
- weight = 15
- +++
-
- The following steps are here to help you initialize your new website. If you don't know Hugo at all, we strongly suggest you to train by following this [great documentation for beginners](https://gohugo.io/overview/quickstart/).
-
- ## Create your project
-
- Hugo provides a `new` command to create a new website.
-
- ```
- hugo new site
- ```
-
-**Hugo-theme-learn** fournit des [archétypes]({{< relref "cont/archetypes.fr.md" >}}) pour vous aider à créer ce type de pages.
-
-## Configuration des Front Matter
-
-Chaque page Hugo doit définir un [Front Matter](https://gohugo.io/content/front-matter/) dans le format *yaml*, *toml* ou *json*.
-
-**Hugo-theme-learn** utilise les paramètres suivant en plus de ceux définis par Hugo:
-
-```toml
-+++
-# Le Sommaire (table of content = toc) est activé par défaut. Modifier ce paramètre à true pour le désactiver.
-# Note: Le sommaire est toujours désactivé pour les chapitres
-disableToc = "false"
-# Le titre de la page dans le menu sera préfixé par ce contentu HTML
-pre = ""
-# Le titre de la page dans le menu sera suffixé par ce contentu HTML
-post = ""
-# Modifier le type de la page pour changer l'affichage
-chapter = false
-# Cache la page du menu
-hidden = false
-# Nom de la personne qui a modifié la page. Quand configuré, sera affiché dans le pied de page.
-LastModifierDisplayName = ""
-# Email de la personne qui a modifié la page. Quand configuré, sera affiché dans le pied de page.
-LastModifierEmail = ""
-+++
-```
-
-### Ajouter une icône à une entrée du menu
-
-Dans le Front Matter, ajouter un paramètre `pre` pour insérer du code HTML qui s'affichera avant le label du menu. L'exemple ci-dessous utilise l'icône de Github.
-
-```toml
-+++
-title = "Repo Github"
-pre = " "
-+++
-```
-
-![Titre avec icône](/en/cont/pages/images/frontmatter-icon.png)
-
-### Ordonner les entrées dans le menu
-
-Hugo permet de modifier facilement [l'ordre des menu](https://gohugo.io/content/ordering/).
-
-La manière la plus simple est de configurer le paramètre `weight` avec un nombre.
-
-```toml
-+++
-title = "Ma page"
-weight = 5
-+++
-```
-
-## Page d'accueil
-
-Pour configurer votre page d'accueil, vous avez trois choix:
-
-1. Créer une page `_index.md` dans le dossier `content` et remplissez le fichier avec du *contenu Markdown*
-2. Créer une page `index.html` dans le dossier `static` et remplissez le fichier avec du *contenu HTML*
-3. Configurez votre serveur pour automatiquement rediriger la page d'accueil vers l'une de vos pages.
diff --git a/exampleSite/content/cont/tags.fr.md b/exampleSite/content/cont/tags.fr.md
deleted file mode 100644
index d19b396c6d..0000000000
--- a/exampleSite/content/cont/tags.fr.md
+++ /dev/null
@@ -1,40 +0,0 @@
----
-date: 2018-11-29T08:41:44+01:00
-title: Tags
-weight: 40
-tags: ["documentation", "tutorial"]
----
-
-
-Le *thème Learn* supporte une des taxonomy par défaut de GoHugo : les tags.
-
-## Configuration
-
-Il suffit d'ajouter un tableau de tags sur la page :
-
-```markdown
----
-date: 2018-11-29T08:41:44+01:00
-title: Tutoriel pour le thème
-weight: 15
-tags: ["tutoriel", "theme"]
----
-```
-
-## Comportement
-
-Les tags sont affichés en haut de la page, dans l'ordre dans lequel ils ont été saisis.
-
-Chaque tag est un lien vers une page *Taxonomy*, qui affiche tous les article avec ce tag.
-
-
-## Liste des tags
-
-Il est possible de rajouter un raccourci dans le fichier `config.toml` afin d'afficher une page listant tous les tags
-
-```toml
-[[menu.shortcuts]]
-name = " Tags"
-url = "/tags"
-weight = 30
-```
\ No newline at end of file
diff --git a/exampleSite/content/credits.fr.md b/exampleSite/content/credits.fr.md
deleted file mode 100644
index 536f09381a..0000000000
--- a/exampleSite/content/credits.fr.md
+++ /dev/null
@@ -1,28 +0,0 @@
----
-title: Crédits
-disableToc: true
----
-
-## Contributeurs
-
-Merci à eux de rendre le monde Open Source meilleur !
-
-{{% ghcontributors "https://api.github.com/repos/matcornic/hugo-theme-learn/contributors?per_page=100" %}}
-
-Et un grand merci à [@vjeantet](https://github.com/vjeantet) pour son travail sur [docdock](https://github.com/vjeantet/hugo-theme-docdock), un fork de _hugo-theme-learn_. La v2.0.0 du thème est en grande partie inspirée de son travail.
-
-## Packages et librairies
-* [mermaid](https://knsv.github.io/mermaid) - géneration de diagrames et graphiques à partir de texte similaire à Markdown
-* [font awesome](http://fontawesome.io/) - Le framework de polices iconiques
-* [jQuery](https://jquery.com) - La plus connue des librairies Javascript
-* [lunr](https://lunrjs.com) - Lunr fournit des fonctions de recherche sans service externe
-* [horsey](https://bevacqua.github.io/horsey/) - Autocomplétion de composants (utiliser pour les suggestions de recherche)
-* [clipboard.js](https://zenorocha.github.io/clipboard.js) - Copier le texte dans le presse-papier
-* [highlight.js](https://highlightjs.org) - Mise en valeur de syntaxes
-* [modernizr](https://modernizr.com) - Une boite à outil Javascript qui permet aux développeurs d'utiliser les dernières fonctionnalités de CSS et HTML5, même sur de vieux navigateurs.
-
-## Outils
-
-* [Netlify](https://www.netlify.com) - Déploiement continue et hébergement de cette documentation
-* [Hugo](https://gohugo.io/)
-
diff --git a/exampleSite/content/shortcodes/_index.fr.md b/exampleSite/content/shortcodes/_index.fr.md
deleted file mode 100644
index b084d9bfd5..0000000000
--- a/exampleSite/content/shortcodes/_index.fr.md
+++ /dev/null
@@ -1,16 +0,0 @@
----
-date: 2016-04-09T16:50:16+02:00
-title: Shortcodes
-pre: "3. "
-weight: 15
----
-
-Hugo utilise Markdown pour son format simple. Cependant, il y a beaucoup de chose que Markdown ne supporte pas bien. On pourrait utiliser du HTML pur pour améliorer les capacité du Markdown.
-
-Mais c'est probablement une mauvaise idée. Tout le monde utilise le Markdown parce que c'est pur et simple à lire même lorsqu'il est affiché en texte brut. Vous devez éviter le HTML autant que possible pour garder le contenu simple.
-
-Cependant, pour éviter les limitations, Hugo a créé les [shortcodes](https://gohugo.io/extras/shortcodes/). Un shortcode est un bout de code (*snippet*) dans une page.
-
-**Hugo-theme-learn** fournit de multiple shortcodes en plus de ceux existant.
-
-{{%children style="h2" description="true" %}}
diff --git a/exampleSite/content/shortcodes/attachments.fr.files/BachGavotteShort.mp3 b/exampleSite/content/shortcodes/attachments.fr.files/BachGavotteShort.mp3
deleted file mode 100644
index 94e3d0e539..0000000000
Binary files a/exampleSite/content/shortcodes/attachments.fr.files/BachGavotteShort.mp3 and /dev/null differ
diff --git a/exampleSite/content/shortcodes/attachments.fr.files/Carroll_AliceAuPaysDesMerveilles.pdf b/exampleSite/content/shortcodes/attachments.fr.files/Carroll_AliceAuPaysDesMerveilles.pdf
deleted file mode 100644
index 97377e99b1..0000000000
Binary files a/exampleSite/content/shortcodes/attachments.fr.files/Carroll_AliceAuPaysDesMerveilles.pdf and /dev/null differ
diff --git a/exampleSite/content/shortcodes/attachments.fr.files/adivorciarsetoca00cape.pdf b/exampleSite/content/shortcodes/attachments.fr.files/adivorciarsetoca00cape.pdf
deleted file mode 100644
index e589c73e97..0000000000
Binary files a/exampleSite/content/shortcodes/attachments.fr.files/adivorciarsetoca00cape.pdf and /dev/null differ
diff --git a/exampleSite/content/shortcodes/attachments.fr.files/hugo.png b/exampleSite/content/shortcodes/attachments.fr.files/hugo.png
deleted file mode 100644
index 48acf346c9..0000000000
Binary files a/exampleSite/content/shortcodes/attachments.fr.files/hugo.png and /dev/null differ
diff --git a/exampleSite/content/shortcodes/attachments.fr.files/movieselectricsheep-flock-244-32500-2.mp4 b/exampleSite/content/shortcodes/attachments.fr.files/movieselectricsheep-flock-244-32500-2.mp4
deleted file mode 100644
index 9f1fe56456..0000000000
Binary files a/exampleSite/content/shortcodes/attachments.fr.files/movieselectricsheep-flock-244-32500-2.mp4 and /dev/null differ
diff --git a/exampleSite/content/shortcodes/attachments.fr.md b/exampleSite/content/shortcodes/attachments.fr.md
deleted file mode 100644
index c24093915c..0000000000
--- a/exampleSite/content/shortcodes/attachments.fr.md
+++ /dev/null
@@ -1,85 +0,0 @@
----
-title: Attachments (Pièces jointes)
-description : "The Attachments shortcode displays a list of files attached to a page."
----
-
-Le shortcode *Attachments* affiche une liste de pièces jointes d'une page.
-
-{{% attachments /%}}
-
-## Utilisation
-
-Le shortcode affiche la liste de fichiers trouvés dans un **dossier spécifique**
-A l'heure actuelle, il supporte deux implémentations
-
-1. Si votre page est un fichier Markdown, les pièces jointes doivent être placée dans un **dossier** nommé comme le nom de la page et suffixé par **.files**.
-
- > * content
- > * _index.md
- > * page.files
- > * attachment.pdf
- > * page.md
-
-2. Si votre page est un **dossier**, les pièces jointes doivent être placées dans un dossier fils **'files'**.
-
- > * content
- > * _index.md
- > * page
- > * index.md
- > * files
- > * attachment.pdf
-
-Attention, si votre site est multi-langue, vous devrez avec autant de dossier qu'il y a de langues.
-
-C'est tout !
-
-### Paramètres
-
-| Paramètre | Défaut | Description |
-|:--|:--|:--|
-| title | "Pièces jointes" | Titre de la liste |
-| style | "" | Choisir entre "orange", "grey", "blue" et "green" pour un style plus sympa |
-| pattern | ".*" | Une expression régulière, utilisée pour filtrer les pièces jointes par leur nom de fichier.
Le paramètre **pattern** doit être une [expression régulière](https://en.wikipedia.org/wiki/Regular_expression).
-
-Par exemple:
-
-* Pour trouver les fichiers avec le suffixe 'jpg', utilisez **.*jpg** (pas *.jpg).
-* Pour trouver les fichiers avec les suffixe 'jpg' ou 'png', utilisez **.*(jpg|png)**
-
-### Exemples
-
-#### Lister les pièces jointes de type pdf ou mp4
-
-
- {{%/*attachments title="Fichiers associés" pattern=".*(pdf|mp4)"/*/%}}
-
-s'affiche comme
-
-{{%attachments title="Fichiers associés" pattern=".*(pdf|mp4)"/%}}
-
-#### Modifier le style
-
- {{%/*attachments style="orange" /*/%}}
-
-s'affiche comme
-
-{{% attachments style="orange" /%}}
-
-
- {{%/*attachments style="grey" /*/%}}
-
-s'affiche comme
-
-{{% attachments style="grey" /%}}
-
- {{%/*attachments style="blue" /*/%}}
-
-s'affiche comme
-
-{{% attachments style="blue" /%}}
-
- {{%/*attachments style="green" /*/%}}
-
-s'affiche comme
-
-{{% attachments style="green" /%}}
\ No newline at end of file
diff --git a/exampleSite/content/shortcodes/button.fr.md b/exampleSite/content/shortcodes/button.fr.md
deleted file mode 100644
index 66e55af75b..0000000000
--- a/exampleSite/content/shortcodes/button.fr.md
+++ /dev/null
@@ -1,16 +0,0 @@
----
-title: Button (Bouton)
-description : "De beaux boutons sur votre page."
----
-
-Le shortcode *button* est simplement un bouton cliquable avec une icône optionnelle.
-
-```
-{{%/* button href="https://getgrav.org/" */%}}Téléchargez Grav{{%/* /button */%}}
-{{%/* button href="https://getgrav.org/" icon="fas fa-download" */%}}Téléchargez Grav avec icône{{%/* /button */%}}
-{{%/* button href="https://getgrav.org/" icon="fas fa-download" icon-position="right" */%}}Téléchargez Grav avec icône à droite{{%/* /button */%}}
-```
-
-{{% button href="https://getgrav.org/" %}}Téléchargez Grav{{% /button %}}
-{{% button href="https://getgrav.org/" icon="fas fa-download" %}}Téléchargez Grav avec icône{{% /button %}}
-{{% button href="https://getgrav.org/" icon="fas fa-download" icon-position="right" %}}Téléchargez Grav avec icône à droite{{% /button %}}
diff --git a/exampleSite/content/shortcodes/children/_index.fr.md b/exampleSite/content/shortcodes/children/_index.fr.md
deleted file mode 100644
index 672c5ad614..0000000000
--- a/exampleSite/content/shortcodes/children/_index.fr.md
+++ /dev/null
@@ -1,45 +0,0 @@
----
-title : Children (Pages filles)
-description : Liste les pages filles de la page
----
-
-Utilisez le shortcode *children* pour lister les pages filles de la page et tous ses déscendants (pages filles de pages filles). Par défaut, le shortcode affiche des liens vers les pages filles.
-
-## Utilisation
-
-| Paramètre | Défaut | Description |
-|:--|:--|:--|
-| page | _current_ | Spécifie le nom de la page (nom de la section) à afficher |
-| style | "li" | Choisi le style à utiliser pour afficher les descendants. Cela peut être n'importe quel balise HTML |
-| showhidden | "false" | Quand *true*, pages filles cachées dans le menu seront affichées quand même |
-| description | "false" | Permet d'inclure le texte de la description de la page sous chaque entré de la liste.
quand aucune description existe pour la page, le shortcode prend les 70 premiers mots du contenu. [plus d'infos sur gohugo.io](https://gohugo.io/content/summaries/) |
-| depth | 1 | Nombre de descendants à afficher. Par exemple, si la valeur est 2, le shortcode va afficher 2 niveaux de pages filels.
**Astuce:** Utilisez 999 pour avoir tous les descendants|
-| sort | | Tri les pages filles par
Weight - PoidsName - NomIdentifier - Trier alphabétiquement par identifiant configuré dans le front matterURL - URL |
-
-## Démo
-
- {{%/* children */%}}
-
-{{% children %}}
-
- {{%/* children description="true" */%}}
-
-{{%children description="true" %}}
-
- {{%/* children depth="3" showhidden="true" */%}}
-
-{{% children depth="3" showhidden="true" %}}
-
- {{%/* children style="h2" depth="3" description="true" */%}}
-
-{{% children style="h2" depth="3" description="true" %}}
-
- {{%/* children style="div" depth="999" */%}}
-
-{{% children style="div" depth="999" %}}
-
-
-
-
-
-
diff --git a/exampleSite/content/shortcodes/children/children-1/_index.fr.md b/exampleSite/content/shortcodes/children/children-1/_index.fr.md
deleted file mode 100644
index 7737f5034a..0000000000
--- a/exampleSite/content/shortcodes/children/children-1/_index.fr.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-title = "page 1"
-description = "Ceci est une page test"
-+++
-
-Ceci est une page de demo
\ No newline at end of file
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/_index.fr.md b/exampleSite/content/shortcodes/children/children-1/children-1-1/_index.fr.md
deleted file mode 100644
index e39cb5828b..0000000000
--- a/exampleSite/content/shortcodes/children/children-1/children-1-1/_index.fr.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-title = "page 1-1"
-description = "Ceci est une page test"
-+++
-
-Ceci est une page de demo
\ No newline at end of file
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.fr.md b/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.fr.md
deleted file mode 100644
index 31d2cd1189..0000000000
--- a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.fr.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-title = "page 1-1-1"
-description = "Ceci est une page test"
-+++
-
-Ceci est une page de demo
\ No newline at end of file
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.fr.md b/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.fr.md
deleted file mode 100644
index 3b0f7f0962..0000000000
--- a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.fr.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-title = "page 1-1-1-1"
-description = "Ceci est une page test"
-+++
-
-Ceci est une page de demo
\ No newline at end of file
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/_index.fr.md b/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/_index.fr.md
deleted file mode 100644
index 5a1961725a..0000000000
--- a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/_index.fr.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-title = "page 1-1-1-1-1"
-description = "Ceci est une page test"
-+++
-
-Ceci est une page de demo
\ No newline at end of file
diff --git a/exampleSite/content/shortcodes/children/children-2/_index.fr.md b/exampleSite/content/shortcodes/children/children-2/_index.fr.md
deleted file mode 100644
index a96140c255..0000000000
--- a/exampleSite/content/shortcodes/children/children-2/_index.fr.md
+++ /dev/null
@@ -1,11 +0,0 @@
-+++
-title = "page 2"
-description = ""
-+++
-
-Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
- tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
- quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
- consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
- cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
- proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
\ No newline at end of file
diff --git a/exampleSite/content/shortcodes/children/children-2/test3.fr.md b/exampleSite/content/shortcodes/children/children-2/test3.fr.md
deleted file mode 100644
index 6d649e8079..0000000000
--- a/exampleSite/content/shortcodes/children/children-2/test3.fr.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-title = "page test 3"
-description = "Ceci est une page test"
-+++
-
-Ceci est une page de demo test 3
\ No newline at end of file
diff --git a/exampleSite/content/shortcodes/children/children-3/_index.fr.md b/exampleSite/content/shortcodes/children/children-3/_index.fr.md
deleted file mode 100644
index 1501cc82bc..0000000000
--- a/exampleSite/content/shortcodes/children/children-3/_index.fr.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-title = "page 3"
-description = "Ceci est une page test"
-+++
-
-Ceci est une page de demo
\ No newline at end of file
diff --git a/exampleSite/content/shortcodes/children/children-4/_index.fr.md b/exampleSite/content/shortcodes/children/children-4/_index.fr.md
deleted file mode 100644
index 6735e50417..0000000000
--- a/exampleSite/content/shortcodes/children/children-4/_index.fr.md
+++ /dev/null
@@ -1,7 +0,0 @@
-+++
-title = "page 4"
-description = "Ceci est une page test"
-hidden = true
-+++
-
-Ceci est une page de demo
\ No newline at end of file
diff --git a/exampleSite/content/shortcodes/children/test.fr.md b/exampleSite/content/shortcodes/children/test.fr.md
deleted file mode 100644
index dd6cc3c3ee..0000000000
--- a/exampleSite/content/shortcodes/children/test.fr.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-title = "page test"
-description = "Ceci est une page test"
-+++
-
-Ceci est une page de demo
\ No newline at end of file
diff --git a/exampleSite/content/shortcodes/expand.fr.md b/exampleSite/content/shortcodes/expand.fr.md
deleted file mode 100644
index efb86a3c91..0000000000
--- a/exampleSite/content/shortcodes/expand.fr.md
+++ /dev/null
@@ -1,45 +0,0 @@
----
-title : Expand
-description : "Affiche une section de texte qui se plie et se déplie"
----
-
-Le shortcode *Expand* affiche une section de texte qui se plie et se déplie.
-Ci-dessous un exemple.
-
-{{%expand%}}
-Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
-tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
-quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
-consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
-cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
-proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
-{{%/expand%}}
-
-
-## Utilisation
-
-
-Ce shortcode prends exactement un paramètre optionel pour définir le texte à côté de l'icone. (valeur par défaut est "Déroulez-moi...")
-
- {{%/*expand "Est-ce que ce thème envoie du pâté ?" */%}}Oui !.{{%/* /expand*/%}}
-
-{{%expand "Est-ce que ce thème envoie du pâté ?" %}}Oui !{{% /expand%}}
-
-# Demo
-
- {{%/*expand*/%}}
- Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
- tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
- quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
- consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
- cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
- proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
- {{%/* /expand*/%}}
-
-
-{{%expand%}}Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
-tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
-quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
-consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
-cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
-proident, sunt in culpa qui officia deserunt mollit anim id est laborum.{{% /expand%}}
\ No newline at end of file
diff --git a/exampleSite/content/shortcodes/mermaid.fr.md b/exampleSite/content/shortcodes/mermaid.fr.md
deleted file mode 100644
index 7798785ddf..0000000000
--- a/exampleSite/content/shortcodes/mermaid.fr.md
+++ /dev/null
@@ -1,205 +0,0 @@
----
-title : "Mermaid"
-description : "Génération de diagrammes à partir de texte, dans le même style que Markdown"
----
-
-[Mermaid](https://mermaidjs.github.io/) est une bibliothèque Javascript qui permet de générer des diagrammes (séquence, état, gantt, etc.) à partir de texte, dans le même style que Markdown.
-
-Insérer votre code Mermaid dans un shortcode `mermaid` et c'est tout.
-
-## Flowchart example
- {{*mermaid align="left"*/>}}
- graph LR;
- A[Bords droits] -->|Lien texte| B(Bords arondis)
- B --> C{Décision}
- C -->|Un| D[Résultat un]
- C -->|Deux| E[Résultat deux]
- {{* /mermaid */>}}
-
-renders as
-
-{{}}
-graph LR;
- A[Bords droits] -->|Lien texte| B(Bords arondis)
- B --> C{Décision}
- C -->|Un| D[Résultat un]
- C -->|Deux| E[Résultat deux]
-{{< /mermaid >}}
-
-## Sequence example
-
- {{*mermaid*/>}}
- sequenceDiagram
- participant Alice
- participant Bob
- Alice->>John: Salut John, comment vas-tu?
- loop Vérification
- John->John: Se bat contre l'hyponcodrie.
- end
- Note right of John: Les pensées rationnelles
prédominent...
- John-->Alice: Super!
- John->Bob: Et toi?
- Bob-->John: Au top!
- {{* /mermaid */>}}
-
-renders as
-
-{{}}
-sequenceDiagram
- participant Alice
- participant Bob
- Alice->>John: Salut John, comment vas-tu?
- loop Vérification
- John->John: Se bat contre l'hyponcodrie.
- end
- Note right of John: Les pensées rationnelles
prédominent...
- John-->Alice: Super!
- John->Bob: Et toi?
- Bob-->John: Au top!
-{{< /mermaid >}}
-
-## GANTT Example
-
- {{*mermaid*/>}}
- gantt
- dateFormat YYYY-MM-DD
- title Ajout de la fonctionnalité de GANTT à Mermaid
- section Une section
- Tâche complétée :done, des1, 2014-01-06,2014-01-08
- Tâche en cours :active, des2, 2014-01-09, 3d
- Future tâche : des3, after des2, 5d
- Future tâche 2 : des4, after des3, 5d
- section Tâches critiques
- Tâche complétée dans le chemin critique :crit, done, 2014-01-06,24h
- Implémenter le parser et jison :crit, done, after des1, 2d
- Créer des tests pour le parser :crit, active, 3d
- Future tâche dans le chemin critique :crit, 5d
- Créer des tests pour le renderer :2d
- Ajout à Mermaid :1d
- {{* /mermaid */>}}
-
-renders as
-
-{{}}
-gantt
- dateFormat YYYY-MM-DD
- title Ajout de la fonctionnalité de GANTT à Mermaid
- section Une section
- Tâche complétée :done, des1, 2014-01-06,2014-01-08
- Tâche en cours :active, des2, 2014-01-09, 3d
- Future tâche : des3, after des2, 5d
- Future tâche 2 : des4, after des3, 5d
- section Tâches critiques
- Tâche complétée dans le chemin critique :crit, done, 2014-01-06,24h
- Implémenter le parser et jison :crit, done, after des1, 2d
- Créer des tests pour le parser :crit, active, 3d
- Future tâche dans le chemin critique :crit, 5d
- Créer des tests pour le renderer :2d
- Ajout à Mermaid :1d
-{{}}
-
-### Class example
-
- {{/* mermaid */}}
- classDiagram
- Class01 <|-- AveryLongClass : Cool
- Class03 *-- Class04
- Class05 o-- Class06
- Class07 .. Class08
- Class09 --> C2 : Where am i?
- Class09 --* C3
- Class09 --|> Class07
- Class07 : equals()
- Class07 : Object[] elementData
- Class01 : size()
- Class01 : int chimp
- Class01 : int gorilla
- Class08 <--> C2: Cool label
- {{/* /mermaid */}}
-
-renders as
-
-{{< mermaid >}}
-classDiagram
- Class01 <|-- AveryLongClass : Cool
- Class03 *-- Class04
- Class05 o-- Class06
- Class07 .. Class08
- Class09 --> C2 : Where am i?
- Class09 --* C3
- Class09 --|> Class07
- Class07 : equals()
- Class07 : Object[] elementData
- Class01 : size()
- Class01 : int chimp
- Class01 : int gorilla
- Class08 <--> C2: Cool label
-{{< /mermaid >}}
-
-### Git example
-
- {{* mermaid */>}}
- gitGraph:
- options
- {
- "nodeSpacing": 150,
- "nodeRadius": 10
- }
- end
- commit
- branch newbranch
- checkout newbranch
- commit
- commit
- checkout master
- commit
- commit
- merge newbranch
- {{* /mermaid */>}}
-
-renders as
-
-{{< mermaid >}}
-gitGraph:
-options
-{
- "nodeSpacing": 150,
- "nodeRadius": 10
-}
-end
- commit
- branch newbranch
- checkout newbranch
- commit
- commit
- checkout master
- commit
- commit
- merge newbranch
-{{< /mermaid >}}
-
-### State Diagrams
-
- {{* mermaid */>}}
- stateDiagram-v2
- ouvert: Ouvert
- clos: Clos
- fermé: Fermé
- ouvert --> clos
- clos --> fermé: Lock
- fermé --> clos: Unlock
- clos --> ouvert: Open
- {{* /mermaid */>}}
-
-renders as
-
-{{}}
-stateDiagram-v2
- ouvert: Ouvert
- clos: Clos
- fermé: Fermé
- ouvert --> clos
- clos --> fermé: Lock
- fermé --> clos: Unlock
- clos --> ouvert: Open
-{{}}
diff --git a/exampleSite/content/shortcodes/notice.fr.md b/exampleSite/content/shortcodes/notice.fr.md
deleted file mode 100644
index 91e4d70522..0000000000
--- a/exampleSite/content/shortcodes/notice.fr.md
+++ /dev/null
@@ -1,62 +0,0 @@
----
-title: Notice
-description : "Message pour vous aider à structurer votre contenu"
----
-
-Le shortcode *Notice* permet d'afficher 4 types de message pour vous aider à structurer votre contenu.
-
-### Note
-
-```
-{{%/* notice note */%}}
-Une notice de type *note*
-{{%/* /notice */%}}
-```
-
-s'affiche comme
-
-{{% notice note %}}
-Une notice de type *note*
-{{% /notice %}}
-
-### Info
-
-```
-{{%/* notice info */%}}
-Une notice de type *info*
-{{%/* /notice */%}}
-```
-
-s'affiche comme
-
-{{% notice info %}}
-Une notice de type *info*
-{{% /notice %}}
-
-### Tip
-
-```
-{{%/* notice tip */%}}
-Une notice de type *tip*
-{{%/* /notice */%}}
-```
-
-s'affiche comme
-
-{{% notice tip %}}
-Une notice de type *tip*
-{{% /notice %}}
-
-### Warning
-
-```
-{{%/* notice warning */%}}
-Une notice de type *warning*
-{{%/* /notice */%}}
-```
-
-s'affiche comme
-
-{{% notice warning %}}
-Une notice de type *warning*
-{{% /notice %}}
\ No newline at end of file
diff --git a/exampleSite/content/shortcodes/siteparam.fr.md b/exampleSite/content/shortcodes/siteparam.fr.md
deleted file mode 100644
index 508100b947..0000000000
--- a/exampleSite/content/shortcodes/siteparam.fr.md
+++ /dev/null
@@ -1,23 +0,0 @@
----
-title: Site param
-description : "Afficher la valeur d'un paramètre global du site dans votre page"
----
-
-Les shortcode `siteparam` est utilisé pour vous aider à afficher des valeurs provenant des paramètres globaux du site.
-
-Par exemple, dans ce site, le paramètre `editURL` est utilisé dans le fichier `config.toml`
-
-```toml
-[params]
- editURL = "https://github.com/matcornic/hugo-theme-learn/edit/master/exampleSite/content/"
-```
-
-Utilisez le shortcode `siteparam` pour affichier sa valeur.
-
-```
-Valeur de `editURL` : {{%/* siteparam "editURL" */%}}
-```
-
-s'affiche comme
-
-Valeur de `editURL` : {{% siteparam "editURL" %}}
\ No newline at end of file
diff --git a/exampleSite/content/showcase.fr.md b/exampleSite/content/showcase.fr.md
deleted file mode 100644
index fcb9d7f026..0000000000
--- a/exampleSite/content/showcase.fr.md
+++ /dev/null
@@ -1,14 +0,0 @@
----
-title: Vitrine
-disableToc: true
-slug: vitrine
----
-
-#### [TAT](https://ovh.github.io/tat/overview/) par OVH
-![TAT image](/images/showcase/tat.png?width=50pc)
-
-#### [Tshark.dev](https://tshark.dev) par Ross Jacobs
-![Tshark.dev image](/images/showcase/tshark_dev.png?width=50pc)
-
-#### [inteliver](https://docs.inteliver.com) by Amir Lavasani
-![docs.inteliver.com image](/images/showcase/inteliver_docs.png?width=50pc)
\ No newline at end of file