-```
-
-## 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
-4. Consectetur adipiscing elit
-2. Integer molestie lorem at massa
-8. Facilisis in pretium nisl aliquet
-4. Nulla volutpat aliquam velit
-99. Faucibus porta lacus fringilla vel
-21. Aenean sit amet erat nunc
-6. 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 as **code**.
-
-HTML:
-
-```html
-
In this example, <section></section> should be wrapped as code.
-```
-
-### Indented code
-
-Or indent several lines of code by at least two spaces, as in:
-
-```markdown
- // 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.
-
-```markdown
-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.
-
-See [Code Highlighting]({{< ref "syntaxhighlight.md" >}}) for additional documentation.
-
-For example, to apply syntax highlighting to JavaScript code:
-
-```plaintext
- ```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 tooltip
-
-```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)
-
-### Lightbox
-
-Add a HTTP `featherlight` parameter to the link image to disable lightbox. By default lightbox is enabled using the featherlight.js plugin. You can disable this by defining `featherlight` to `false`.
-
-```markdown
-![Minion](https://octodex.github.com/images/minion.png?featherlight=false)
-```
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/cont/markdown.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/cont/markdown.fr.md
deleted file mode 100644
index e734b31..0000000
--- a/workshop/themes/hugo-theme-learn/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.
-
-
-```
-
-### 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:
-
-
-
-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/workshop/themes/hugo-theme-learn/exampleSite/content/cont/menushortcuts.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/cont/menushortcuts.en.md
deleted file mode 100644
index e59d6fd..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/cont/menushortcuts.en.md
+++ /dev/null
@@ -1,109 +0,0 @@
----
-date: 2016-04-09T16:50:16+02:00
-title: Menu extra shortcuts
-weight: 25
----
-
-You can define additional menu entries or shortcuts in the navigation menu without any link to content.
-
-## Basic configuration
-
-Edit the website configuration `config.toml` and add a `[[menu.shortcuts]]` entry for each link your want to add.
-
-Example from the current website:
-
- [[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
-
-By default, shortcuts are preceded by a title. This title can be disabled by setting `disableShortcutsTitle=true`.
-However, if you want to keep the title but change its value, it can be overriden by changing your local i18n translation string configuration.
-
-For example, in your local `i18n/en.toml` file, add the following content
-
- [Shortcuts-Title]
- other = ""
-
-Read more about [hugo menu](https://gohugo.io/extras/menus/) and [hugo i18n translation strings](https://gohugo.io/content-management/multilingual/#translation-of-strings)
-
-## Configuration for Multilingual mode {#i18n}
-
-When using a multilingual website, you can set different menus for each language. In the `config.toml` file, prefix your menu configuration by `Languages.`.
-
-
-Example from the current website:
-
- [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
-
-Read more about [hugo menu](https://gohugo.io/extras/menus/) and [hugo multilingual menus](https://gohugo.io/content-management/multilingual/#menus)
\ No newline at end of file
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/cont/menushortcuts.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/cont/menushortcuts.fr.md
deleted file mode 100644
index 8860679..0000000
--- a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/exampleSite/content/cont/pages/_index.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/cont/pages/_index.en.md
deleted file mode 100644
index ad6a1b5..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/cont/pages/_index.en.md
+++ /dev/null
@@ -1,166 +0,0 @@
----
-date: 2016-04-09T16:50:16+02:00
-title: Pages organization
-weight: 5
----
-
-In **Hugo**, pages are the core of your site. Once it is configured, pages are definitely the added value to your documentation site.
-
-## Folders
-
-Organize your site like [any other Hugo project](https://gohugo.io/content/organization/). Typically, you will have a *content* folder with all your pages.
-
- content
- ├── level-one
- │ ├── level-two
- │ │ ├── level-three
- │ │ │ ├── level-four
- │ │ │ │ ├── _index.md <-- /level-one/level-two/level-three/level-four
- │ │ │ │ ├── page-4-a.md <-- /level-one/level-two/level-three/level-four/page-4-a
- │ │ │ │ ├── page-4-b.md <-- /level-one/level-two/level-three/level-four/page-4-b
- │ │ │ │ └── page-4-c.md <-- /level-one/level-two/level-three/level-four/page-4-c
- │ │ │ ├── _index.md <-- /level-one/level-two/level-three
- │ │ │ ├── page-3-a.md <-- /level-one/level-two/level-three/page-3-a
- │ │ │ ├── page-3-b.md <-- /level-one/level-two/level-three/page-3-b
- │ │ │ └── page-3-c.md <-- /level-one/level-two/level-three/page-3-c
- │ │ ├── _index.md <-- /level-one/level-two
- │ │ ├── page-2-a.md <-- /level-one/level-two/page-2-a
- │ │ ├── page-2-b.md <-- /level-one/level-two/page-2-b
- │ │ └── page-2-c.md <-- /level-one/level-two/page-2-c
- │ ├── _index.md <-- /level-one
- │ ├── page-1-a.md <-- /level-one/page-1-a
- │ ├── page-1-b.md <-- /level-one/page-1-b
- │ └── page-1-c.md <-- /level-one/page-1-c
- ├── _index.md <-- /
- └── page-top.md <-- /page-top
-
-{{% notice note %}}
-`_index.md` is required in each folder, it’s your “folder home page”
-{{% /notice %}}
-
-## Types
-
-**Hugo-theme-learn** defines two types of pages. *Default* and *Chapter*. Both can be used at any level of the documentation, the only difference being layout display.
-
-A **Chapter** displays a page meant to be used as introduction for a set of child pages. Commonly, it contains a simple title and a catch line to define content that can be found under it.
-You can define any HTML as prefix for the menu. In the example below, it's just a number but that could be an [icon](https://fortawesome.github.io/Font-Awesome/).
-
-![Chapter page](/en/cont/pages/images/pages-chapter.png?width=50pc)
-
-```markdown
-+++
-title = "Basics"
-chapter = true
-weight = 5
-pre = "1. "
-+++
-
-### Chapter 1
-
-# Basics
-
-Discover what this Hugo theme is all about and the core-concepts behind it.
-```
-
-To tell **Hugo-theme-learn** to consider a page as a chapter, set `chapter=true` in the Front Matter of the page.
-
-A **Default** page is any other content page.
-
-![Default page](/en/cont/pages/images/pages-default.png?width=50pc)
-
-```toml
-+++
-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** provides [archetypes]({{< relref "cont/archetypes.en.md" >}}) to help you create this kind of pages.
-
-## Front Matter configuration
-
-Each Hugo page has to define a [Front Matter](https://gohugo.io/content/front-matter/) in *yaml*, *toml* or *json*.
-
-**Hugo-theme-learn** uses the following parameters on top of Hugo ones :
-
-```toml
-+++
-# Table of content (toc) is enabled by default. Set this parameter to true to disable it.
-# Note: Toc is always disabled for chapter pages
-disableToc = "false"
-# If set, this will be used for the page's menu entry (instead of the `title` attribute)
-menuTitle = ""
-# The title of the page in menu will be prefixed by this HTML content
-pre = ""
-# The title of the page in menu will be postfixed by this HTML content
-post = ""
-# Set the page as a chapter, changing the way it's displayed
-chapter = false
-# Hide a menu entry by setting this to true
-hidden = false
-# Display name of this page modifier. If set, it will be displayed in the footer.
-LastModifierDisplayName = ""
-# Email of this page modifier. If set with LastModifierDisplayName, it will be displayed in the footer
-LastModifierEmail = ""
-+++
-```
-
-### Add icon to a menu entry
-
-In the page frontmatter, add a `pre` param to insert any HTML code before the menu label. The example below uses the Github icon.
-
-```toml
-+++
-title = "Github repo"
-pre = " "
-+++
-```
-
-![Title with icon](/en/cont/pages/images/frontmatter-icon.png)
-
-### Ordering sibling menu/page entries
-
-Hugo provides a [flexible way](https://gohugo.io/content/ordering/) to handle order for your pages.
-
-The simplest way is to set `weight` parameter to a number.
-
-```toml
-+++
-title = "My page"
-weight = 5
-+++
-```
-
-### Using a custom title for menu entries
-
-By default, **Hugo-theme-learn** will use a page's `title` attribute for the menu item (or `linkTitle` if defined).
-
-But a page's title has to be descriptive on its own while the menu is a hierarchy.
-We've added the `menuTitle` parameter for that purpose:
-
-For example (for a page named `content/install/linux.md`):
-
-```toml
-+++
-title = "Install on Linux"
-menuTitle = "Linux"
-+++
-```
-
-## Homepage
-
-To configure your home page, you basically have three choices:
-
-1. Create an `_index.md` document in `content` folder and fill the file with *Markdown content*
-2. Create an `index.html` file in the `static` folder and fill the file with *HTML content*
-3. Configure your server to automatically redirect home page to one your documentation page
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/cont/pages/_index.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/cont/pages/_index.fr.md
deleted file mode 100644
index 50c6f25..0000000
--- a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/exampleSite/content/cont/pages/images/frontmatter-icon.png b/workshop/themes/hugo-theme-learn/exampleSite/content/cont/pages/images/frontmatter-icon.png
deleted file mode 100644
index a8dd653..0000000
Binary files a/workshop/themes/hugo-theme-learn/exampleSite/content/cont/pages/images/frontmatter-icon.png and /dev/null differ
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/cont/pages/images/pages-chapter.png b/workshop/themes/hugo-theme-learn/exampleSite/content/cont/pages/images/pages-chapter.png
deleted file mode 100644
index 593d7e2..0000000
Binary files a/workshop/themes/hugo-theme-learn/exampleSite/content/cont/pages/images/pages-chapter.png and /dev/null differ
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/cont/pages/images/pages-default.png b/workshop/themes/hugo-theme-learn/exampleSite/content/cont/pages/images/pages-default.png
deleted file mode 100644
index 396e788..0000000
Binary files a/workshop/themes/hugo-theme-learn/exampleSite/content/cont/pages/images/pages-default.png and /dev/null differ
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/cont/syntaxhighlight.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/cont/syntaxhighlight.en.md
deleted file mode 100644
index ed1fe72..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/cont/syntaxhighlight.en.md
+++ /dev/null
@@ -1,89 +0,0 @@
----
-date: 2020-06-01T13:31:12+01:00
-title: Code highlighting
-weight: 16
----
-
-Learn theme uses [highlight.js](https://highlightjs.org/) to provide code syntax highlighting.
-
-## Markdown syntax
-
-Wrap the code block with three backticks and the name of the language. Highlight will try to auto detect the language if one is not provided.
-
-
-```plaintext
- ```json
- [
- {
- "title": "apples",
- "count": [12000, 20000],
- "description": {"text": "...", "sensitive": false}
- },
- {
- "title": "oranges",
- "count": [17500, null],
- "description": {"text": "...", "sensitive": false}
- }
- ]
- ```
-```
-
-
-Renders to:
-
-```json
-[
- {
- "title": "apples",
- "count": [12000, 20000],
- "description": {"text": "...", "sensitive": false}
- },
- {
- "title": "oranges",
- "count": [17500, null],
- "description": {"text": "...", "sensitive": false}
- }
-]
-```
-
-## Supported languages
-
-Learn theme ships with its own version of highlight.js to support offline browsing. The included package supports 38 common languages, as described on the [highlight.js download page](https://highlightjs.org/download/).
-
-## Identifying failed language detection
-
-Highlight will write a warning to the browser console if a requested language was not found. For example, the following code block references an imaginary language `foo`. An error will be output to the console on this page.
-
-```plaintext
- ```foo
- bar
- ```
-```
-
-```nohighlight
-Could not find the language 'foo', did you forget to load/include a language module?(anonymous) @ highlight.pack.js
-```
-
-## Supporting additional languages
-
-To support languages other than the 38 common languages included in the default highlight.js you will need to download your own version of highlight.js and add it to your site content.
-
-### Download custom highlight.js
-
-Visit [https://highlightjs.org/download/](https://highlightjs.org/download/) and select your desired language support. Note that more languages means greater package size.
-
-### Add custom highlight.js to static resources
-
-Inside the zip archive downloaded from highlight.js extract the file named `highlight.pack.js`. Move this file to the **new** location
-
-```nohighlight
-static/js/highlight.pack.js
-```
-
-**Do not** replace the existing file at `themes/hugo-theme-learn/static/js/highlight.pack.js`.
-
-Including the file in the correct path will override the theme default highlight.pack.js and prevent issues caused in the future if the theme default file is updated.
-
-## Further usage information
-
-See [https://highlightjs.org/usage/](https://highlightjs.org/usage/)
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/cont/tags.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/cont/tags.en.md
deleted file mode 100644
index 02972bb..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/cont/tags.en.md
+++ /dev/null
@@ -1,39 +0,0 @@
----
-date: 2018-11-29T08:41:44+01:00
-title: Tags
-weight: 40
-tags: ["documentation", "tutorial"]
----
-
-*Learn theme* support one default taxonomy of gohugo: the *tag* feature.
-
-## Configuration
-
-Just add tags to any page:
-
-```markdown
----
-date: 2018-11-29T08:41:44+01:00
-title: Theme tutorial
-weight: 15
-tags: ["tutorial", "theme"]
----
-```
-
-## Behavior
-
-
-The tags are displayed at the top of the page, in their insertion order.
-
-Each tag is a link to a *Taxonomy* page displaying all the articles with the given tag.
-
-## List all the tags
-
-In the `config.toml` file you can add a shortcut to display all the tags
-
-```toml
-[[menu.shortcuts]]
-name = " Tags"
-url = "/tags"
-weight = 30
-```
\ No newline at end of file
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/cont/tags.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/cont/tags.fr.md
deleted file mode 100644
index d19b396..0000000
--- a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/exampleSite/content/credits.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/credits.en.md
deleted file mode 100644
index 1a489fc..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/credits.en.md
+++ /dev/null
@@ -1,28 +0,0 @@
----
-title: Credits
-disableToc: true
----
-
-## Contributors
-
-Thanks to them for making Open Source Software a better place !
-
-{{% ghcontributors "https://api.github.com/repos/matcornic/hugo-theme-learn/contributors?per_page=100" %}}
-
-And a special thanks to [@vjeantet](https://github.com/vjeantet) for his work on [docdock](https://github.com/vjeantet/hugo-theme-docdock), a fork of hugo-theme-learn. v2.0.0 of this theme is inspired by his work.
-
-## Packages and libraries
-* [mermaid](https://knsv.github.io/mermaid) - generation of diagram and flowchart from text in a similar manner as markdown
-* [font awesome](http://fontawesome.io/) - the iconic font and CSS framework
-* [jQuery](https://jquery.com) - The Write Less, Do More, JavaScript Library
-* [lunr](https://lunrjs.com) - Lunr enables you to provide a great search experience without the need for external, server-side, search services...
-* [horsey](https://bevacqua.github.io/horsey/) - Progressive and customizable autocomplete component
-* [clipboard.js](https://zenorocha.github.io/clipboard.js) - copy text to clipboard
-* [highlight.js](https://highlightjs.org) - Javascript syntax highlighter
-* [modernizr](https://modernizr.com) - A JavaScript toolkit that allows web developers to use new CSS3 and HTML5 features while maintaining a fine level of control over browsers that don't support
-
-## Tooling
-
-* [Netlify](https://www.netlify.com) - Continuous deployement and hosting of this documentation
-* [Hugo](https://gohugo.io/)
-
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/credits.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/credits.fr.md
deleted file mode 100644
index 536f093..0000000
--- a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/_index.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/_index.en.md
deleted file mode 100644
index 754bb0f..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/_index.en.md
+++ /dev/null
@@ -1,16 +0,0 @@
----
-date: 2016-04-09T16:50:16+02:00
-title: Shortcodes
-pre: "3. "
-weight: 15
----
-
-Hugo uses Markdown for its simple content format. However, there are a lot of things that Markdown doesn’t support well. You could use pure HTML to expand possibilities.
-
-But this happens to be a bad idea. Everyone uses Markdown because it's pure and simple to read even non-rendered. You should avoid HTML to keep it as simple as possible.
-
-To avoid this limitations, Hugo created [shortcodes](https://gohugo.io/extras/shortcodes/). A shortcode is a simple snippet inside a page.
-
-**Hugo-theme-learn** provides multiple shortcodes on top of existing ones.
-
-{{%children style="h2" description="true" %}}
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/_index.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/_index.fr.md
deleted file mode 100644
index b084d9b..0000000
--- a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/BachGavotteShort.mp3 b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/BachGavotteShort.mp3
deleted file mode 100644
index 94e3d0e..0000000
Binary files a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/BachGavotteShort.mp3 and /dev/null differ
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/Carroll_AliceAuPaysDesMerveilles.pdf b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/Carroll_AliceAuPaysDesMerveilles.pdf
deleted file mode 100644
index 97377e9..0000000
Binary files a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/Carroll_AliceAuPaysDesMerveilles.pdf and /dev/null differ
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/adivorciarsetoca00cape.pdf b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/adivorciarsetoca00cape.pdf
deleted file mode 100644
index e589c73..0000000
Binary files a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/adivorciarsetoca00cape.pdf and /dev/null differ
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/hugo.png b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/hugo.png
deleted file mode 100644
index 48acf34..0000000
Binary files a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/hugo.png and /dev/null differ
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/movieselectricsheep-flock-244-32500-2.mp4 b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/movieselectricsheep-flock-244-32500-2.mp4
deleted file mode 100644
index 9f1fe56..0000000
Binary files a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/movieselectricsheep-flock-244-32500-2.mp4 and /dev/null differ
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.md
deleted file mode 100644
index 8a2429c..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.md
+++ /dev/null
@@ -1,85 +0,0 @@
----
-title: Attachments
-description : "The Attachments shortcode displays a list of files attached to a page."
----
-
-The Attachments shortcode displays a list of files attached to a page.
-
-{{% attachments /%}}
-
-## Usage
-
-The shortcurt lists files found in a **specific folder**.
-Currently, it support two implementations for pages
-
-1. If your page is a markdown file, attachements must be placed in a **folder** named like your page and ending with **.files**.
-
- > * content
- > * _index.md
- > * page.files
- > * attachment.pdf
- > * page.md
-
-2. If your page is a **folder**, attachements must be placed in a nested **'files'** folder.
-
- > * content
- > * _index.md
- > * page
- > * index.md
- > * files
- > * attachment.pdf
-
-Be aware that if you use a multilingual website, you will need to have as many folders as languages.
-
-That's all!
-
-### Parameters
-
-| Parameter | Default | Description |
-|:--|:--|:--|
-| title | "Attachments" | List's title |
-| style | "" | Choose between "orange", "grey", "blue" and "green" for nice style |
-| pattern | ".*" | A regular expressions, used to filter the attachments by file name.
The **pattern** parameter value must be [regular expressions](https://en.wikipedia.org/wiki/Regular_expression).
-
-For example:
-
-* To match a file suffix of 'jpg', use **.*jpg** (not *.jpg).
-* To match file names ending in 'jpg' or 'png', use **.*(jpg|png)**
-
-### Examples
-
-#### List of attachments ending in pdf or mp4
-
-
- {{%/*attachments title="Related files" pattern=".*(pdf|mp4)"/*/%}}
-
-renders as
-
-{{%attachments title="Related files" pattern=".*(pdf|mp4)"/%}}
-
-#### Colored styled box
-
- {{%/*attachments style="orange" /*/%}}
-
-renders as
-
-{{% attachments style="orange" /%}}
-
-
- {{%/*attachments style="grey" /*/%}}
-
-renders as
-
-{{% attachments style="grey" /%}}
-
- {{%/*attachments style="blue" /*/%}}
-
-renders as
-
-{{% attachments style="blue" /%}}
-
- {{%/*attachments style="green" /*/%}}
-
-renders as
-
-{{% attachments style="green" /%}}
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/BachGavotteShort.mp3 b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/BachGavotteShort.mp3
deleted file mode 100644
index 94e3d0e..0000000
Binary files a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/BachGavotteShort.mp3 and /dev/null differ
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/Carroll_AliceAuPaysDesMerveilles.pdf b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/Carroll_AliceAuPaysDesMerveilles.pdf
deleted file mode 100644
index 97377e9..0000000
Binary files a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/Carroll_AliceAuPaysDesMerveilles.pdf and /dev/null differ
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/adivorciarsetoca00cape.pdf b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/adivorciarsetoca00cape.pdf
deleted file mode 100644
index e589c73..0000000
Binary files a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/adivorciarsetoca00cape.pdf and /dev/null differ
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/hugo.png b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/hugo.png
deleted file mode 100644
index 48acf34..0000000
Binary files a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/hugo.png and /dev/null differ
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/movieselectricsheep-flock-244-32500-2.mp4 b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/movieselectricsheep-flock-244-32500-2.mp4
deleted file mode 100644
index 9f1fe56..0000000
Binary files a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/movieselectricsheep-flock-244-32500-2.mp4 and /dev/null differ
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.md
deleted file mode 100644
index c240939..0000000
--- a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/button.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/button.en.md
deleted file mode 100644
index 9fb92bd..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/button.en.md
+++ /dev/null
@@ -1,16 +0,0 @@
----
-title: Button
-description : "Nice buttons on your page."
----
-
-A button is a just a clickable button with optional icon.
-
-```
-{{%/* button href="https://getgrav.org/" */%}}Get Grav{{%/* /button */%}}
-{{%/* button href="https://getgrav.org/" icon="fas fa-download" */%}}Get Grav with icon{{%/* /button */%}}
-{{%/* button href="https://getgrav.org/" icon="fas fa-download" icon-position="right" */%}}Get Grav with icon right{{%/* /button */%}}
-```
-
-{{% button href="https://getgrav.org/" %}}Get Grav{{% /button %}}
-{{% button href="https://getgrav.org/" icon="fas fa-download" %}}Get Grav with icon{{% /button %}}
-{{% button href="https://getgrav.org/" icon="fas fa-download" icon-position="right" %}}Get Grav with icon right{{% /button %}}
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/button.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/button.fr.md
deleted file mode 100644
index 66e55af..0000000
--- a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/_index.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/_index.en.md
deleted file mode 100644
index 17bdcfb..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/_index.en.md
+++ /dev/null
@@ -1,45 +0,0 @@
----
-title : Children
-description : List the child pages of a page
----
-
-Use the children shortcode to list the child pages of a page and the further descendants (children's children). By default, the shortcode displays links to the child pages.
-
-## Usage
-
-| Parameter | Default | Description |
-|:--|:--|:--|
-| page | _current_ | Specify the page name (section name) to display children for |
-| style | "li" | Choose the style used to display descendants. It could be any HTML tag name |
-| showhidden | "false" | When true, child pages hidden from the menu will be displayed |
-| description | "false" | Allows you to include a short text under each page in the list. When no description exists for the page, children shortcode takes the first 70 words of your content. [Read more info about summaries on gohugo.io](https://gohugo.io/content/summaries/) |
-| depth | 1 | Enter a number to specify the depth of descendants to display. For example, if the value is 2, the shortcode will display 2 levels of child pages. **Tips:** set 999 to get all descendants |
-| sort | none | Sort children by **Weight** - to sort on menu order, **Name** - to sort alphabetically on menu label, **Identifier** - to sort alphabetically on identifier set in frontmatter, and **URL** - to sort by URL |
-
-## Demo
-
- {{%/* 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/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/_index.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/_index.fr.md
deleted file mode 100644
index 672c5ad..0000000
--- a/workshop/themes/hugo-theme-learn/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 - Poids
Name - Nom
Identifier - Trier alphabétiquement par identifiant configuré dans le front matter
URL - 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/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/_index.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/_index.en.md
deleted file mode 100644
index d0c5179..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/_index.en.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-title = "page 1"
-description = "This is a demo child page"
-+++
-
-This is a demo child page
\ No newline at end of file
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/_index.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/_index.fr.md
deleted file mode 100644
index 7737f50..0000000
--- a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/_index.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/_index.en.md
deleted file mode 100644
index a4982f9..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/_index.en.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-title = "page 1-1"
-description = "This is a demo child page"
-+++
-
-This is a demo child page
\ No newline at end of file
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/_index.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/_index.fr.md
deleted file mode 100644
index e39cb58..0000000
--- a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.en.md
deleted file mode 100644
index 5ce56f4..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.en.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-title = "page 1-1-1"
-description = "This is a demo child page"
-+++
-
-This is a demo child page
\ No newline at end of file
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.fr.md
deleted file mode 100644
index 31d2cd1..0000000
--- a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.en.md
deleted file mode 100644
index d5d9ab2..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.en.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-title = "page 1-1-1-1"
-description = "This is a demo child page"
-+++
-
-This is a demo child page
\ No newline at end of file
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.fr.md b/workshop/themes/hugo-theme-learn/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 3b0f7f0..0000000
--- a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/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.en.md b/workshop/themes/hugo-theme-learn/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.en.md
deleted file mode 100644
index 883b5b2..0000000
--- a/workshop/themes/hugo-theme-learn/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.en.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-title = "page 1-1-1-1-1"
-description = "This is a demo child page"
-+++
-
-This is a demo child page
\ No newline at end of file
diff --git a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/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 5a19617..0000000
--- a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-2/_index.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-2/_index.en.md
deleted file mode 100644
index a96140c..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-2/_index.en.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/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-2/_index.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-2/_index.fr.md
deleted file mode 100644
index a96140c..0000000
--- a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-2/test3.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-2/test3.en.md
deleted file mode 100644
index f603d4c..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-2/test3.en.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-title = "page test 3"
-description = "This is a page test"
-+++
-
-This is a test 3 demo child page
\ No newline at end of file
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-2/test3.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-2/test3.fr.md
deleted file mode 100644
index 6d649e8..0000000
--- a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-3/_index.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-3/_index.en.md
deleted file mode 100644
index f36f861..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-3/_index.en.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-title = "page 3"
-description = "This is a demo child page"
-+++
-
-This is a demo child page, not displayed in the menu
\ No newline at end of file
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-3/_index.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-3/_index.fr.md
deleted file mode 100644
index 1501cc8..0000000
--- a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-4/_index.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-4/_index.en.md
deleted file mode 100644
index b9f042d..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-4/_index.en.md
+++ /dev/null
@@ -1,7 +0,0 @@
-+++
-title = "page 4"
-description = "This is a demo child page"
-hidden = true
-+++
-
-This is a demo child page, not displayed in the menu
\ No newline at end of file
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-4/_index.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-4/_index.fr.md
deleted file mode 100644
index 6735e50..0000000
--- a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/test.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/test.en.md
deleted file mode 100644
index 045f0a1..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/test.en.md
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-title = "page test"
-description = "This is a page test"
-+++
-
-This is a test demo child page
\ No newline at end of file
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/test.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/test.fr.md
deleted file mode 100644
index dd6cc3c..0000000
--- a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/expand.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/expand.en.md
deleted file mode 100644
index dff1906..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/expand.en.md
+++ /dev/null
@@ -1,45 +0,0 @@
----
-title : Expand
-description : "Displays an expandable/collapsible section of text on your page"
----
-
-The Expand shortcode displays an expandable/collapsible section of text on your page.
-Here is an example
-
-{{%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%}}
-
-
-## Usage
-
-
-this shortcode takes exactly one optional parameter to define the text that appears next to the expand/collapse icon. (default is "Expand me...")
-
- {{%/*expand "Is this learn theme rocks ?" */%}}Yes !.{{%/* /expand*/%}}
-
-{{%expand "Is this learn theme rocks ?" %}}Yes !{{% /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/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/expand.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/expand.fr.md
deleted file mode 100644
index efb86a3..0000000
--- a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/mermaid.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/mermaid.en.md
deleted file mode 100644
index b5ed111..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/mermaid.en.md
+++ /dev/null
@@ -1,210 +0,0 @@
----
-title : "Mermaid"
-description : "Generation of diagram and flowchart from text in a similar manner as markdown"
----
-
-[Mermaid](https://mermaidjs.github.io/) is a library helping you to generate diagram and flowcharts from text, in a similar manner as Markdown.
-
-Just insert your mermaid code in the `mermaid` shortcode and that's it.
-
-## Flowchart example
-
- {{*mermaid align="left"*/>}}
- graph LR;
- A[Hard edge] -->|Link text| B(Round edge)
- B --> C{Decision}
- C -->|One| D[Result one]
- C -->|Two| E[Result two]
- {{* /mermaid */>}}
-
-renders as
-
-{{}}
-graph LR;
- A[Hard edge] -->|Link text| B(Round edge)
- B --> C{Decision}
- C -->|One| D[Result one]
- C -->|Two| E[Result two]
-{{}}
-
-## Sequence example
-
- {{* mermaid */>}}
- sequenceDiagram
- participant Alice
- participant Bob
- Alice->>John: Hello John, how are you?
- loop Healthcheck
- John->John: Fight against hypochondria
- end
- Note right of John: Rational thoughts prevail...
- John-->Alice: Great!
- John->Bob: How about you?
- Bob-->John: Jolly good!
- {{* /mermaid */>}}
-
-renders as
-
-{{}}
-sequenceDiagram
- participant Alice
- participant Bob
- Alice->>John: Hello John, how are you?
- loop Healthcheck
- John->John: Fight against hypochondria
- end
- Note right of John: Rational thoughts prevail...
- John-->Alice: Great!
- John->Bob: How about you?
- Bob-->John: Jolly good!
-{{}}
-
-## GANTT Example
-
- {{* mermaid */>}}
- gantt
- dateFormat YYYY-MM-DD
- title Adding GANTT diagram functionality to mermaid
- section A section
- Completed task :done, des1, 2014-01-06,2014-01-08
- Active task :active, des2, 2014-01-09, 3d
- Future task : des3, after des2, 5d
- Future task2 : des4, after des3, 5d
- section Critical tasks
- Completed task in the critical line :crit, done, 2014-01-06,24h
- Implement parser and jison :crit, done, after des1, 2d
- Create tests for parser :crit, active, 3d
- Future task in critical line :crit, 5d
- Create tests for renderer :2d
- Add to mermaid :1d
- {{* /mermaid */>}}
-
-
-renders as
-
-{{}}
-gantt
- dateFormat YYYY-MM-DD
- title Adding GANTT diagram functionality to mermaid
- section A section
- Completed task :done, des1, 2014-01-06,2014-01-08
- Active task :active, des2, 2014-01-09, 3d
- Future task : des3, after des2, 5d
- Future task2 : des4, after des3, 5d
- section Critical tasks
- Completed task in the critical line :crit, done, 2014-01-06,24h
- Implement parser and jison :crit, done, after des1, 2d
- Create tests for parser :crit, active, 3d
- Future task in critical line :crit, 5d
- Create tests for renderer :2d
- Add to 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
-
-
-{{}}
-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
-{{}}
-
-
-### 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
-
-{{}}
-gitGraph:
-options
-{
- "nodeSpacing": 150,
- "nodeRadius": 10
-}
-end
- commit
- branch newbranch
- checkout newbranch
- commit
- commit
- checkout master
- commit
- commit
- merge newbranch
-{{}}
-
-### State Diagrams
-
- {{* mermaid */>}}
- stateDiagram-v2
- open: Open Door
- closed: Closed Door
- locked: Locked Door
- open --> closed: Close
- closed --> locked: Lock
- locked --> closed: Unlock
- closed --> open: Open
- {{* /mermaid */>}}
-
-renders as
-
-{{}}
-stateDiagram-v2
- open: Open Door
- closed: Closed Door
- locked: Locked Door
- open --> closed: Close
- closed --> locked: Lock
- locked --> closed: Unlock
- closed --> open: Open
-{{}}
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/mermaid.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/mermaid.fr.md
deleted file mode 100644
index 7798785..0000000
--- a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/notice.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/notice.en.md
deleted file mode 100644
index c82a6e9..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/notice.en.md
+++ /dev/null
@@ -1,62 +0,0 @@
----
-title: Notice
-description : "Disclaimers to help you structure your page"
----
-
-The notice shortcode shows 4 types of disclaimers to help you structure your page.
-
-### Note
-
-```
-{{%/* notice note */%}}
-A notice disclaimer
-{{%/* /notice */%}}
-```
-
-renders as
-
-{{% notice note %}}
-A notice disclaimer
-{{% /notice %}}
-
-### Info
-
-```
-{{%/* notice info */%}}
-An information disclaimer
-{{%/* /notice */%}}
-```
-
-renders as
-
-{{% notice info %}}
-An information disclaimer
-{{% /notice %}}
-
-### Tip
-
-```
-{{%/* notice tip */%}}
-A tip disclaimer
-{{%/* /notice */%}}
-```
-
-renders as
-
-{{% notice tip %}}
-A tip disclaimer
-{{% /notice %}}
-
-### Warning
-
-```
-{{%/* notice warning */%}}
-A warning disclaimer
-{{%/* /notice */%}}
-```
-
-renders as
-
-{{% notice warning %}}
-A warning disclaimer
-{{% /notice %}}
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/notice.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/notice.fr.md
deleted file mode 100644
index 91e4d70..0000000
--- a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/siteparam.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/siteparam.en.md
deleted file mode 100644
index f431ffb..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/siteparam.en.md
+++ /dev/null
@@ -1,23 +0,0 @@
----
-title: Site param
-description : "Get value of site params variables in your page."
----
-
-`siteparam` shortcode is used to help you print values of site params.
-
-For instance, in this current site, the `editURL` variable is used in `config.toml`
-
-```toml
-[params]
- editURL = "https://github.com/matcornic/hugo-theme-learn/edit/master/exampleSite/content/"
-```
-
-Use the `siteparam` shortcode to display its value.
-
-```
-`editURL` Value : {{%/* siteparam "editURL" */%}}
-```
-
-is displayed as
-
-`editURL` Value : {{% siteparam "editURL" %}}
\ No newline at end of file
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/siteparam.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/siteparam.fr.md
deleted file mode 100644
index 508100b..0000000
--- a/workshop/themes/hugo-theme-learn/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/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/tabs.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/tabs.en.md
deleted file mode 100644
index d664eea..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/shortcodes/tabs.en.md
+++ /dev/null
@@ -1,119 +0,0 @@
----
-title: Tabbed views
-description : "Synchronize selection of content in different tabbed views"
----
-
-Choose which content to see across the page. Very handy for providing code
-snippets for multiple languages or providing configuration in different formats.
-
-## Code example
-
- {{* tabs */>}}
- {{%/* tab name="python" */%}}
- ```python
- print("Hello World!")
- ```
- {{%/* /tab */%}}
- {{%/* tab name="R" */%}}
- ```R
- > print("Hello World!")
- ```
- {{%/* /tab */%}}
- {{%/* tab name="Bash" */%}}
- ```Bash
- echo "Hello World!"
- ```
- {{%/* /tab */%}}
- {{* /tabs */>}}
-
-Renders as:
-
-{{< tabs >}}
-{{% tab name="python" %}}
-```python
-print("Hello World!")
-```
-{{% /tab %}}
-{{% tab name="R" %}}
-```R
-> print("Hello World!")
-```
-{{% /tab %}}
-{{% tab name="Bash" %}}
-```Bash
-echo "Hello World!"
-```
-{{% /tab %}}
-{{< /tabs >}}
-
-Tab views with the same tabs that belong to the same group sychronize their selection:
-
-{{< tabs >}}
-{{% tab name="python" %}}
-```python
-print("Hello World!")
-```
-{{% /tab %}}
-{{% tab name="R" %}}
-```R
-> print("Hello World!")
-```
-{{% /tab %}}
-{{% tab name="Bash" %}}
-```Bash
-echo "Hello World!"
-```
-{{% /tab %}}
-{{< /tabs >}}
-
-## Config example
-
- {{* tabs groupId="config" */>}}
- {{%/* tab name="json" */%}}
- ```json
- {
- "Hello": "World"
- }
- ```
- {{%/* /tab */%}}
- {{%/* tab name="XML" */%}}
- ```xml
- World
- ```
- {{%/* /tab */%}}
- {{%/* tab name="properties" */%}}
- ```properties
- Hello = World
- ```
- {{%/* /tab */%}}
- {{* /tabs */>}}
-
-Renders as:
-
-{{< tabs groupId="config" >}}
-{{% tab name="json" %}}
-```json
-{
- "Hello": "World"
-}
-```
-{{% /tab %}}
-{{% tab name="XML" %}}
-```xml
-World
-```
-{{% /tab %}}
-{{% tab name="properties" %}}
-```properties
-Hello = World
-```
-{{% /tab %}}
-{{< /tabs >}}
-
-{{% notice warning %}}
-When using tab views with different content sets, make sure to use a common `groupId` for equal sets but distinct
-`groupId` for different sets. The `groupId` defaults to `'default'`.
-**Take this into account across the whole site!**
-The tab selection is restored automatically based on the `groupId` and if it cannot find a tab item because it came
- from the `'default'` group on a different page then all tabs will be empty at first.
-{{% /notice %}}
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/showcase.en.md b/workshop/themes/hugo-theme-learn/exampleSite/content/showcase.en.md
deleted file mode 100644
index 4d06d8b..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/content/showcase.en.md
+++ /dev/null
@@ -1,13 +0,0 @@
----
-title: Showcase
-disableToc: true
----
-
-#### [TAT](https://ovh.github.io/tat/overview/) by OVH
-![TAT image](/images/showcase/tat.png?width=50pc)
-
-#### [Tshark.dev](https://tshark.dev) by 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
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/content/showcase.fr.md b/workshop/themes/hugo-theme-learn/exampleSite/content/showcase.fr.md
deleted file mode 100644
index fcb9d7f..0000000
--- a/workshop/themes/hugo-theme-learn/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
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/layouts/partials/custom-footer.html b/workshop/themes/hugo-theme-learn/exampleSite/layouts/partials/custom-footer.html
deleted file mode 100644
index 50e11eb..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/layouts/partials/custom-footer.html
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/layouts/partials/logo.html b/workshop/themes/hugo-theme-learn/exampleSite/layouts/partials/logo.html
deleted file mode 100644
index e1ef57c..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/layouts/partials/logo.html
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
diff --git a/workshop/themes/hugo-theme-learn/exampleSite/layouts/partials/menu-footer.html b/workshop/themes/hugo-theme-learn/exampleSite/layouts/partials/menu-footer.html
deleted file mode 100644
index 5a35bd0..0000000
--- a/workshop/themes/hugo-theme-learn/exampleSite/layouts/partials/menu-footer.html
+++ /dev/null
@@ -1,14 +0,0 @@
-