.toml` et inspirez vous du thème `themes/hugo-theme-learn/i18n/en.toml`
-
-D'ailleurs, ces traductions pour servir à tout le monde, donc svp prenez le temps de [proposer une Pull Request](https://github.com/matcornic/hugo-theme-learn/pulls) !
-
-## Désactiver le changement de langue
-
-Vous pouvez changer de langue directement dans le navigateur. C'est une super fonctionnalité, mais vous avez peut-être besoin de la désactiver.
-
-Pour ce faire, ajouter le paramètre `disableLanguageSwitchingButton=true` dans votre `config.toml`
-
-```toml
-[params]
- # Quand vous utilisez un site en multi-langue, désactive le bouton de changment de langue.
- disableLanguageSwitchingButton = true
-```
-
-
\ No newline at end of file
diff --git a/content/cont/i18n/images/i18n-menu.gif b/content/cont/i18n/images/i18n-menu.gif
deleted file mode 100644
index 99ee222..0000000
Binary files a/content/cont/i18n/images/i18n-menu.gif and /dev/null differ
diff --git a/content/cont/icons.en.md b/content/cont/icons.en.md
deleted file mode 100644
index ad769c6..0000000
--- a/content/cont/icons.en.md
+++ /dev/null
@@ -1,41 +0,0 @@
----
-title: Icons and logos
-weight: 27
----
-
-The Learn theme for Hugo loads the [**Font Awesome**](https://fontawesome.com) library, allowing you to easily display any icon or logo available in the Font Awesome free collection.
-
-## Finding an icon
-
-Browse through the available icons in the [Font Awesome Gallery](https://fontawesome.com/icons?d=gallery&m=free). Notice that the **free** filter is enabled, as only the free icons are available by default.
-
-Once on the Font Awesome page for a specific icon, for example the page for the [heart](https://fontawesome.com/icons/heart?style=solid), copy the HTML reference and paste into the markdown content.
-
-The HTML to include the heart icon is:
-
-```
-
-```
-
-## Including in markdown
-
-Paste the `` HTML into markup and Font Awesome will load the relevant icon.
-
-```
-Built with from Grav and Hugo
-```
-
-Which appears as
-
-Built with from Grav and Hugo
-
-## Customising icons
-
-Font Awesome provides many ways to modify the icon
-
-* Change colour (by default the icon will inherit the parent colour)
-* Increase or decrease size
-* Rotate
-* Combine with other icons
-
-Check the full documentation on [web fonts with CSS](https://fontawesome.com/how-to-use/web-fonts-with-css) for more.
diff --git a/content/cont/markdown.en.md b/content/cont/markdown.en.md
deleted file mode 100644
index c97701e..0000000
--- a/content/cont/markdown.en.md
+++ /dev/null
@@ -1,692 +0,0 @@
----
-date: 2016-04-09T16:50:16+02:00
-title: Markdown syntax
-weight: 15
----
-
-{{% notice note %}}
-This page is a shameful copy of the great [Grav original page](http://learn.getgrav.org/content/markdown).
-Only difference is information about image customization ([resizing]({{< relref "#resizing-image" >}}), [add CSS classes]({{< relref "#add-css-classes" >}})...)
-{{% /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
-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
-
-```
-
-
-
-or
-
-```markdown
-
-```
-
-
-
-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
-
-```
-
-
-
-```markdown
-
-```
-
-
-
-```markdown
-
-```
-
-
-
-### 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
-
-```
-
-
-
-```markdown
-
-```
-
-
-
-```markdown
-
-```
-
-
-
-### 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
-
-```
diff --git a/content/cont/markdown.fr.md b/content/cont/markdown.fr.md
deleted file mode 100644
index e734b31..0000000
--- a/content/cont/markdown.fr.md
+++ /dev/null
@@ -1,666 +0,0 @@
----
-date: 2016-04-09T16:50:16+02:00
-title: Syntaxe Markdown
-weight: 15
----
-
-{{% notice note %}}
-Cette page est une copie de la [doc de Grav](http://learn.getgrav.org/content/markdown).
-La seule différence porte sur la personalisation des images ([taille]({{< relref "#resizing-image" >}}), [ajout de classes CSS]({{< relref "#add-css-classes" >}})...)
-Pour des raisons évidentes, cette page n'a pas été traduites en français 😁
-{{% /notice%}}
-
-Let's face it: Writing content for the Web is tiresome. WYSIWYG editors help alleviate this task, but they generally result in horrible code, or worse yet, ugly web pages.
-
-**Markdown** is a better way to write **HTML**, without all the complexities and ugliness that usually accompanies it.
-
-Some of the key benefits are:
-
-1. Markdown is simple to learn, with minimal extra characters so it's also quicker to write content.
-2. Less chance of errors when writing in markdown.
-3. Produces valid XHTML output.
-4. Keeps the content and the visual display separate, so you cannot mess up the look of your site.
-5. Write in any text editor or Markdown application you like.
-6. Markdown is a joy to use!
-
-John Gruber, the author of Markdown, puts it like this:
-
-> The overriding design goal for Markdown’s formatting syntax is to make it as readable as possible. The idea is that a Markdown-formatted document should be publishable as-is, as plain text, without looking like it’s been marked up with tags or formatting instructions. While Markdown’s syntax has been influenced by several existing text-to-HTML filters, the single biggest source of inspiration for Markdown’s syntax is the format of plain text email.
-> -- John Gruber
-
-
-Grav ships with built-in support for [Markdown](http://daringfireball.net/projects/markdown/) and [Markdown Extra](https://michelf.ca/projects/php-markdown/extra/). You must enable **Markdown Extra** in your `system.yaml` configuration file
-
-Without further delay, let us go over the main elements of Markdown and what the resulting HTML looks like:
-
-{{% notice info %}}
- Bookmark this page for easy future reference!
-{{% /notice %}}
-
-## Headings
-
-Headings from `h1` through `h6` are constructed with a `#` for each level:
-
-```markdown
-# h1 Heading
-## h2 Heading
-### h3 Heading
-#### h4 Heading
-##### h5 Heading
-###### h6 Heading
-```
-
-Renders to:
-
-# h1 Heading
-## h2 Heading
-### h3 Heading
-#### h4 Heading
-##### h5 Heading
-###### h6 Heading
-
-HTML:
-
-```html
-h1 Heading
-h2 Heading
-h3 Heading
-h4 Heading
-h5 Heading
-h6 Heading
-```
-
-## Comments
-
-Comments should be HTML compatible
-
-```html
-
-```
-Comment below should **NOT** be seen:
-
-
-
-
-## Horizontal Rules
-
-The HTML `
` element is for creating a "thematic break" between paragraph-level elements. In markdown, you can create a `
` with any of the following:
-
-* `___`: three consecutive underscores
-* `---`: three consecutive dashes
-* `***`: three consecutive asterisks
-
-renders to:
-
-___
-
----
-
-***
-
-
-## Body Copy
-
-Body copy written as normal, plain text will be wrapped with `` tags in the rendered HTML.
-
-So this body copy:
-
-```markdown
-Lorem ipsum dolor sit amet, graecis denique ei vel, at duo primis mandamus. Et legere ocurreret pri, animal tacimates complectitur ad cum. Cu eum inermis inimicus efficiendi. Labore officiis his ex, soluta officiis concludaturque ei qui, vide sensibus vim ad.
-```
-renders to this HTML:
-
-```html
-Lorem ipsum dolor sit amet, graecis denique ei vel, at duo primis mandamus. Et legere ocurreret pri, animal tacimates complectitur ad cum. Cu eum inermis inimicus efficiendi. Labore officiis his ex, soluta officiis concludaturque ei qui, vide sensibus vim ad.
-```
-
-## Emphasis
-
-### Bold
-For emphasizing a snippet of text with a heavier font-weight.
-
-The following snippet of text is **rendered as bold text**.
-
-```markdown
-**rendered as bold text**
-```
-renders to:
-
-**rendered as bold text**
-
-and this HTML
-
-```html
-rendered as bold text
-```
-
-### Italics
-For emphasizing a snippet of text with italics.
-
-The following snippet of text is _rendered as italicized text_.
-
-```markdown
-_rendered as italicized text_
-```
-
-renders to:
-
-_rendered as italicized text_
-
-and this HTML:
-
-```html
-rendered as italicized text
-```
-
-
-### strikethrough
-In GFM (GitHub flavored Markdown) you can do strikethroughs.
-
-```markdown
-~~Strike through this text.~~
-```
-Which renders to:
-
-~~Strike through this text.~~
-
-HTML:
-
-```html
-Strike through this text.
-```
-
-## Blockquotes
-
-For quoting blocks of content from another source within your document.
-
-Add `>` before any text you want to quote.
-
-```markdown
-> **Fusion Drive** combines a hard drive with a flash storage (solid-state drive) and presents it as a single logical volume with the space of both drives combined.
-```
-
-Renders to:
-
-> **Fusion Drive** combines a hard drive with a flash storage (solid-state drive) and presents it as a single logical volume with the space of both drives combined.
-
-and this HTML:
-
-```html
-
- Fusion Drive combines a hard drive with a flash storage (solid-state drive) and presents it as a single logical volume with the space of both drives combined.
-
-```
-
-Blockquotes can also be nested:
-
-```markdown
-> Donec massa lacus, ultricies a ullamcorper in, fermentum sed augue. Nunc augue augue, aliquam non hendrerit ac, commodo vel nisi.
->
-> > Sed adipiscing elit vitae augue consectetur a gravida nunc vehicula. Donec auctor odio non est accumsan facilisis. Aliquam id turpis in dolor tincidunt mollis ac eu diam.
->
-> Mauris sit amet ligula egestas, feugiat metus tincidunt, luctus libero. Donec congue finibus tempor. Vestibulum aliquet sollicitudin erat, ut aliquet purus posuere luctus.
-```
-
-Renders to:
-
-> Donec massa lacus, ultricies a ullamcorper in, fermentum sed augue. Nunc augue augue, aliquam non hendrerit ac, commodo vel nisi.
->
-> > Sed adipiscing elit vitae augue consectetur a gravida nunc vehicula. Donec auctor odio non est accumsan facilisis. Aliquam id turpis in dolor tincidunt mollis ac eu diam.
->
-> Mauris sit amet ligula egestas, feugiat metus tincidunt, luctus libero. Donec congue finibus tempor. Vestibulum aliquet sollicitudin erat, ut aliquet purus posuere luctus.
-
-## Notices
-
-{{% notice note %}}
-The old mechanism for notices overriding the block quote syntax (`>>>`) has been deprecated. Notices are now handled via a dedicated plugin called [Markdown Notices](https://github.com/getgrav/grav-plugin-markdown-notices)
-{{% /notice %}}
-
-## Lists
-
-### Unordered
-A list of items in which the order of the items does not explicitly matter.
-
-You may use any of the following symbols to denote bullets for each list item:
-
-```markdown
-* valid bullet
-- valid bullet
-+ valid bullet
-```
-
-For example
-
-```markdown
-+ Lorem ipsum dolor sit amet
-+ Consectetur adipiscing elit
-+ Integer molestie lorem at massa
-+ Facilisis in pretium nisl aliquet
-+ Nulla volutpat aliquam velit
- - Phasellus iaculis neque
- - Purus sodales ultricies
- - Vestibulum laoreet porttitor sem
- - Ac tristique libero volutpat at
-+ Faucibus porta lacus fringilla vel
-+ Aenean sit amet erat nunc
-+ Eget porttitor lorem
-```
-Renders to:
-
-+ Lorem ipsum dolor sit amet
-+ Consectetur adipiscing elit
-+ Integer molestie lorem at massa
-+ Facilisis in pretium nisl aliquet
-+ Nulla volutpat aliquam velit
- - Phasellus iaculis neque
- - Purus sodales ultricies
- - Vestibulum laoreet porttitor sem
- - Ac tristique libero volutpat at
-+ Faucibus porta lacus fringilla vel
-+ Aenean sit amet erat nunc
-+ Eget porttitor lorem
-
-And this HTML
-
-```html
-
- - Lorem ipsum dolor sit amet
- - Consectetur adipiscing elit
- - Integer molestie lorem at massa
- - Facilisis in pretium nisl aliquet
- - Nulla volutpat aliquam velit
-
- - Phasellus iaculis neque
- - Purus sodales ultricies
- - Vestibulum laoreet porttitor sem
- - Ac tristique libero volutpat at
-
-
- - Faucibus porta lacus fringilla vel
- - Aenean sit amet erat nunc
- - Eget porttitor lorem
-
-```
-
-### Ordered
-
-A list of items in which the order of items does explicitly matter.
-
-```markdown
-1. Lorem ipsum dolor sit amet
-2. Consectetur adipiscing elit
-3. Integer molestie lorem at massa
-4. Facilisis in pretium nisl aliquet
-5. Nulla volutpat aliquam velit
-6. Faucibus porta lacus fringilla vel
-7. Aenean sit amet erat nunc
-8. Eget porttitor lorem
-```
-Renders to:
-
-1. Lorem ipsum dolor sit amet
-2. Consectetur adipiscing elit
-3. Integer molestie lorem at massa
-4. Facilisis in pretium nisl aliquet
-5. Nulla volutpat aliquam velit
-6. Faucibus porta lacus fringilla vel
-7. Aenean sit amet erat nunc
-8. Eget porttitor lorem
-
-And this HTML:
-
-```html
-
- - Lorem ipsum dolor sit amet
- - Consectetur adipiscing elit
- - Integer molestie lorem at massa
- - Facilisis in pretium nisl aliquet
- - Nulla volutpat aliquam velit
- - Faucibus porta lacus fringilla vel
- - Aenean sit amet erat nunc
- - Eget porttitor lorem
-
-```
-
-**TIP**: If you just use `1.` for each number, Markdown will automatically number each item. For example:
-
-```markdown
-1. Lorem ipsum dolor sit amet
-1. Consectetur adipiscing elit
-1. Integer molestie lorem at massa
-1. Facilisis in pretium nisl aliquet
-1. Nulla volutpat aliquam velit
-1. Faucibus porta lacus fringilla vel
-1. Aenean sit amet erat nunc
-1. Eget porttitor lorem
-```
-
-Renders to:
-
-1. Lorem ipsum dolor sit amet
-2. Consectetur adipiscing elit
-3. Integer molestie lorem at massa
-4. Facilisis in pretium nisl aliquet
-5. Nulla volutpat aliquam velit
-6. Faucibus porta lacus fringilla vel
-7. Aenean sit amet erat nunc
-8. Eget porttitor lorem
-
-## Code
-
-### Inline code
-Wrap inline snippets of code with `` ` ``.
-
-```markdown
-In this example, `` should be wrapped as **code**.
-```
-
-Renders to:
-
-In this example, `` should be wrapped with **code**.
-
-HTML:
-
-```html
-In this example, <section></section> should be wrapped with code.
-```
-
-### Indented code
-
-Or indent several lines of code by at least four spaces, as in:
-
-
- // Some comments
- line 1 of code
- line 2 of code
- line 3 of code
-
-
-Renders to:
-
- // Some comments
- line 1 of code
- line 2 of code
- line 3 of code
-
-HTML:
-
-```html
-
-
- // Some comments
- line 1 of code
- line 2 of code
- line 3 of code
-
-
-```
-
-
-### Block code "fences"
-
-Use "fences" ```` ``` ```` to block in multiple lines of code.
-
-
-``` markup
-Sample text here...
-```
-
-
-
-```
-Sample text here...
-```
-
-HTML:
-
-```html
-
- Sample text here...
-
-```
-
-### Syntax highlighting
-
-GFM, or "GitHub Flavored Markdown" also supports syntax highlighting. To activate it, simply add the file extension of the language you want to use directly after the first code "fence", ` ```js `, and syntax highlighting will automatically be applied in the rendered HTML. For example, to apply syntax highlighting to JavaScript code:
-
-
-```js
-grunt.initConfig({
- assemble: {
- options: {
- assets: 'docs/assets',
- data: 'src/data/*.{json,yml}',
- helpers: 'src/custom-helpers.js',
- partials: ['src/partials/**/*.{hbs,md}']
- },
- pages: {
- options: {
- layout: 'default.hbs'
- },
- files: {
- './': ['src/templates/pages/index.hbs']
- }
- }
- }
-};
-```
-
-
-Renders to:
-
-```js
-grunt.initConfig({
- assemble: {
- options: {
- assets: 'docs/assets',
- data: 'src/data/*.{json,yml}',
- helpers: 'src/custom-helpers.js',
- partials: ['src/partials/**/*.{hbs,md}']
- },
- pages: {
- options: {
- layout: 'default.hbs'
- },
- files: {
- './': ['src/templates/pages/index.hbs']
- }
- }
- }
-};
-```
-
-## Tables
-Tables are created by adding pipes as dividers between each cell, and by adding a line of dashes (also separated by bars) beneath the header. Note that the pipes do not need to be vertically aligned.
-
-
-```markdown
-| Option | Description |
-| ------ | ----------- |
-| data | path to data files to supply the data that will be passed into templates. |
-| engine | engine to be used for processing templates. Handlebars is the default. |
-| ext | extension to be used for dest files. |
-```
-
-Renders to:
-
-| Option | Description |
-| ------ | ----------- |
-| data | path to data files to supply the data that will be passed into templates. |
-| engine | engine to be used for processing templates. Handlebars is the default. |
-| ext | extension to be used for dest files. |
-
-And this HTML:
-
-```html
-
-
- | Option |
- Description |
-
-
- | data |
- path to data files to supply the data that will be passed into templates. |
-
-
- | engine |
- engine to be used for processing templates. Handlebars is the default. |
-
-
- | ext |
- extension to be used for dest files. |
-
-
-```
-
-### Right aligned text
-
-Adding a colon on the right side of the dashes below any heading will right align text for that column.
-
-```markdown
-| Option | Description |
-| ------:| -----------:|
-| data | path to data files to supply the data that will be passed into templates. |
-| engine | engine to be used for processing templates. Handlebars is the default. |
-| ext | extension to be used for dest files. |
-```
-
-| Option | Description |
-| ------:| -----------:|
-| data | path to data files to supply the data that will be passed into templates. |
-| engine | engine to be used for processing templates. Handlebars is the default. |
-| ext | extension to be used for dest files. |
-
-## Links
-
-### Basic link
-
-```markdown
-[Assemble](http://assemble.io)
-```
-
-Renders to (hover over the link, there is no tooltip):
-
-[Assemble](http://assemble.io)
-
-HTML:
-
-```html
-Assemble
-```
-
-
-### Add a title
-
-```markdown
-[Upstage](https://github.com/upstage/ "Visit Upstage!")
-```
-
-Renders to (hover over the link, there should be a tooltip):
-
-[Upstage](https://github.com/upstage/ "Visit Upstage!")
-
-HTML:
-
-```html
-Upstage
-```
-
-### Named Anchors
-
-Named anchors enable you to jump to the specified anchor point on the same page. For example, each of these chapters:
-
-```markdown
-# Table of Contents
- * [Chapter 1](#chapter-1)
- * [Chapter 2](#chapter-2)
- * [Chapter 3](#chapter-3)
-```
-will jump to these sections:
-
-```markdown
-## Chapter 1
-Content for chapter one.
-
-## Chapter 2
-Content for chapter one.
-
-## Chapter 3
-Content for chapter one.
-```
-**NOTE** that specific placement of the anchor tag seems to be arbitrary. They are placed inline here since it seems to be unobtrusive, and it works.
-
-
-## Images {#images}
-Images have a similar syntax to links but include a preceding exclamation point.
-
-```markdown
-
-```
-
-
-or
-```markdown
-
-```
-
-
-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
-
-```
-
-
-
-```markdown
-
-```
-
-
-
-```markdown
-
-```
-
-
-
-### 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
-
-```
-
-
-```markdown
-
-```
-
-
-```markdown
-
-```
-
diff --git a/content/cont/menushortcuts.en.md b/content/cont/menushortcuts.en.md
deleted file mode 100644
index e59d6fd..0000000
--- a/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/content/cont/menushortcuts.fr.md b/content/cont/menushortcuts.fr.md
deleted file mode 100644
index 8860679..0000000
--- a/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/content/cont/pages/_index.en.md b/content/cont/pages/_index.en.md
deleted file mode 100644
index ad6a1b5..0000000
--- a/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/).
-
-
-
-```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.
-
-
-
-```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 = " "
-+++
-```
-
-
-
-### 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/content/cont/pages/_index.fr.md b/content/cont/pages/_index.fr.md
deleted file mode 100644
index 50c6f25..0000000
--- a/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/).
-
-
-
-```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.
-
-
-
- +++
- 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 = " "
-+++
-```
-
-
-
-### 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/content/cont/pages/images/frontmatter-icon.png b/content/cont/pages/images/frontmatter-icon.png
deleted file mode 100644
index a8dd653..0000000
Binary files a/content/cont/pages/images/frontmatter-icon.png and /dev/null differ
diff --git a/content/cont/pages/images/pages-chapter.png b/content/cont/pages/images/pages-chapter.png
deleted file mode 100644
index 593d7e2..0000000
Binary files a/content/cont/pages/images/pages-chapter.png and /dev/null differ
diff --git a/content/cont/pages/images/pages-default.png b/content/cont/pages/images/pages-default.png
deleted file mode 100644
index 396e788..0000000
Binary files a/content/cont/pages/images/pages-default.png and /dev/null differ
diff --git a/content/cont/syntaxhighlight.en.md b/content/cont/syntaxhighlight.en.md
deleted file mode 100644
index ed1fe72..0000000
--- a/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/content/cont/tags.en.md b/content/cont/tags.en.md
deleted file mode 100644
index 02972bb..0000000
--- a/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/content/cont/tags.fr.md b/content/cont/tags.fr.md
deleted file mode 100644
index d19b396..0000000
--- a/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/content/self-host/_index.en.md b/content/self-host/_index.en.md
new file mode 100755
index 0000000..c2c3008
--- /dev/null
+++ b/content/self-host/_index.en.md
@@ -0,0 +1,12 @@
+---
+title: Self-host
+weight: 5
+pre: "1. "
+chapter: true
+---
+
+### Chapter 1
+
+# Self-host
+
+We are continuously developing the server, if you have any comments, please join our [Discord](https://discord.com/invite/nDceKgxnkV) discussion.
\ No newline at end of file
diff --git a/content/self-host/_index.fr.md b/content/self-host/_index.fr.md
new file mode 100644
index 0000000..64db68e
--- /dev/null
+++ b/content/self-host/_index.fr.md
@@ -0,0 +1,12 @@
+---
+title: Auto-hébergeur
+weight: 5
+pre: "1. "
+chapter: true
+---
+
+### Chapitre 1
+
+# Auto-hébergeur
+
+Nous développons continuellement le serveur, si vous avez des commentaires, veuillez rejoindre notre discussion [Discord](https://discord.com/invite/nDceKgxnkV).
diff --git a/content/self-host/_index.zh.md b/content/self-host/_index.zh.md
new file mode 100755
index 0000000..f0657dc
--- /dev/null
+++ b/content/self-host/_index.zh.md
@@ -0,0 +1,12 @@
+---
+title: 自建服务器
+weight: 5
+pre: "1. "
+chapter: true
+---
+
+### 章节 1
+
+# 自建服务器
+
+我们在持续开发服务器,如果您有什么意见,请加入我们的[Discord](https://discord.com/invite/nDceKgxnkV)讨论。
\ No newline at end of file
diff --git a/content/self-host/install/.DS_Store b/content/self-host/install/.DS_Store
new file mode 100644
index 0000000..7887fe2
Binary files /dev/null and b/content/self-host/install/.DS_Store differ
diff --git a/content/self-host/install/_index.en.md b/content/self-host/install/_index.en.md
new file mode 100644
index 0000000..a6c0236
--- /dev/null
+++ b/content/self-host/install/_index.en.md
@@ -0,0 +1,67 @@
+---
+title: Installation
+weight: 10
+---
+
+## Set up your own cloud by following simple steps
+-----------
+
+### STEP-1 : Download server-side software programs
+
+[Download](https://github.com/rustdesk/rustdesk-server/) or use docker rustdesk/rustdesk-server, **Note:** You need [buy license](https://rustdesk.com/server/) When using this software
+
+Three platform versions provided:
+ - Linux
+ - Windows
+
+Below tutorial is based on Linux build.
+
+There are two executables:
+ - hbbs - RustDesk ID/Rendezvous server
+ - hbbr - RustDesk relay server
+
+They are built on Centos7, tested on Centos7/8, Ubuntu 18/20.
+
+### STEP-2 : Run hbbs and hbbr on server
+
+Run hbbs/hbbr on your server (Centos or Ubuntu). We suggust you use [pm2](https://pm2.keymetrics.io/) managing your service.
+
+By default, hbbs listens on 21115(tcp) and 21116(tcp/udp), hbbr listens on 21117(tcp). Be sure to open these ports in the firewall.
+
+- TCP(21115, 21116, 21117)
+- UDP(21116)
+
+Please run with "-h" option to see help if you wanna choose your own port.
+
+#### Docker example
+```
+sudo docker image pull rustdesk/rustdesk-server
+sudo docker run --name hbbr -p 21117:21117 -v `pwd`:/root -it --rm rustdesk/rustdesk-server hbbr -m
+sudo docker run --name hbbs -p 21115:21115 -p 21116:21116 -p 21116:21116/udp -v `pwd`:/root -it --rm rustdesk/rustdesk-server hbbs -r -m
+```
+- Note: If you wish to host the server on your own for demonstration or testing purposes, you can specificy `demo` within the `` flag. This will allow your server to run for 30 days.
+
+
+### STEP-3 : Set hbbs/hbbr address on client-side
+
+Click on menu button on the right side of ID as below, choose "ID/Relay Server".
+
+
+
+Please input hbbs host or ip address in ID server input box on remote and local side, and hbbr host or ip address in relay server input box on remote side.
+
+e.g.
+
+```
+hbbs.yourhost.com
+hbbr.yourhost.com
+```
+
+or
+
+```
+hbbs.yourhost.com:21116
+hbbr.yourhost.com:21117
+```
+
+
\ No newline at end of file
diff --git a/content/self-host/install/_index.fr.md b/content/self-host/install/_index.fr.md
new file mode 100644
index 0000000..cadbf68
--- /dev/null
+++ b/content/self-host/install/_index.fr.md
@@ -0,0 +1,42 @@
+---
+title: Linux
+weight: 10
+---
+
+
+### Installer NodeJs
+Veuillez [Télécharger](https://nodejs.org/dist/v16.14.2/node-v16.14.2-x86.msi) et installer.
+NodeJs est l'environnement d'exécution de pm2, vous devez donc d'abord installer NodeJs。
+
+### Installer pm2
+Entrez ci-dessous dans cmd.exe, appuyez sur la touche Entrée pour chaque ligne et exécutez-les ligne par ligne.
+```
+npm install -g pm2
+npm install pm2-windows-startup -g
+pm2-startup install
+```
+
+### Exécutez hbbr et hbbs
+Téléchargez la version Windows du [programme serveur](https://github.com/rustdesk/rustdesk-server/releases), en supposant que vous la décompressez sur le lecteur C. Exécutez respectivement les quatre lignes de commandes suivantes.
+```
+cd c:\rustdesk-server-windows-x64
+pm2 start hbbr.exe -- -m
+pm2 start hbbs.exe -- -r -m
+pm2 save
+```
+
+### Afficher le journal
+```
+pm2 log hbbr
+pm2 log hbbs
+```
+
+### Modifier l'e-mail
+Par exemple, la nouvelle adresse e-mail enregistrée est test@test.com, et l'adresse publique de hbbr est test.hbbr.com
+```
+pm2 delete hbbr hbbs
+cd c:\rustdesk-server-windows-x64
+pm2 start hbbr.exe -- -m test@test.com
+pm2 start hbbs.exe -- -r test.hbbr.com -m test@test.com
+pm2 save
+```
\ No newline at end of file
diff --git a/content/self-host/install/_index.zh.md b/content/self-host/install/_index.zh.md
new file mode 100644
index 0000000..10e6c58
--- /dev/null
+++ b/content/self-host/install/_index.zh.md
@@ -0,0 +1,79 @@
+---
+title: 安装
+weight: 10
+---
+
+## 如何自建中继
+-----------
+
+### 步骤1: 下载服务器端软件程序
+
+[下载](https://gitee.com/rustdesk/rustdesk-server/)或者使用docker rustdesk/rustdesk-server,**注意**: 你需要[购买许可](https://rustdesk.com/server/)才能正常运行本程序
+
+提供三个版本:
+ - Linux
+ - Windows
+
+以下针对Linux版本做使用说明。
+
+有两个可执行文件:
+ - hbbs - RustDesk ID注册服务器
+ - hbbr - RustDesk 中继服务器
+
+下载后务必
+```
+chmod a+x hbbs hbbr
+```
+
+Linux版本在Centos7构建,在 Centos7/8,Ubuntu 18/20上测试过,Debian系列的发行版本应该都没有问题。如果有其他发行版本需求,请联系我。
+
+#### 服务器要求
+硬件要求很低,最低配置的云服务器就可以了,CPU和内存要求都是最小的。关于网络大小,如果TCP打洞直连失败,就要耗费中继流量,一个中继连接的流量在30k-3M每秒之间(1920x1080屏幕),取决于清晰度设置和画面变化,如果只是办公需求,平均在100K。
+
+### 步骤2: 在服务器上运行 hbbs 和 hbbr
+
+在服务器上运行 hbbs/hbbr (Centos 或 Ubuntu)。建议使用[pm2](https://pm2.keymetrics.io/) 管理服务。
+
+需要先运行 hbbr, 可以不带任何参数;
+然后运行 hbbs:
+```
+./hbbs -r
+```
+hhbs的-r参数不是必须的,他只是方便你不用在客户端指定中继服务器。客户端指定的中继服务器优先级高于这个。
+
+默认情况下,hbbs 监听21114(tcp), 21115(tcp), 21116(tcp/udp), 21118(tcp),hbbr 监听21117(tcp), 21119(tcp)。务必在防火墙开启这几个端口, **请注意21116同时要开启TCP和UDP**。其中21115是hbbs用作NAT类型测试,21116/UDP是hbbs用作ID注册与心跳服务,21116/TCP是hbbs用作TCP打洞与连接服务,21117是hbbr用作中继服务, 21118和21119是为了支持网页客户端,21114是网页控制台和API。
+
+- TCP(21114, 21115, 21116, 21117, 21118, 21119)
+- UDP(21116)
+
+如果你想选择**自己的端口**,使用 “-h” 选项查看帮助。
+
+#### Docker示范
+```
+sudo docker image pull rustdesk/rustdesk-server
+sudo docker run --name hbbr -p 21117:21117 -p 21119:21119 -v `pwd`:/root -it --rm rustdesk/rustdesk-server hbbr -m
+sudo docker run --name hbbs -p 21114:21114 -p 21115:21115 -p 21116:21116 -p 21116:21116/udp -p 21118:21118 -v `pwd`:/root -it --rm rustdesk/rustdesk-server hbbs -r -m
+```
+
+### 步骤3: 在客户端设置 hbbs/hbbr 地址
+
+点击 ID 右侧的菜单按钮如下,选择“ ID/中继服务器”。
+
+
+
+在 ID 服务器输入框中(被控端+主控端)输入 hbbs 主机或 ip 地址,在中继服务器输入框中(被控制的一端,主控端无需设置)输入 hbbr 主机或 ip 地址。
+
+**请注意**图中的Key不是指的注册邮箱,对应的是hhbr/hhbs的-k参数,这是为了防止别人盗用你的hbbr/hbbs使用。
+
+例如:
+
+```
+hbbs.yourhost.com
+```
+
+或者
+
+```
+hbbs.yourhost.com:21116
+```
+
\ No newline at end of file
diff --git a/content/self-host/install/images/.DS_Store b/content/self-host/install/images/.DS_Store
new file mode 100644
index 0000000..345a9d5
Binary files /dev/null and b/content/self-host/install/images/.DS_Store differ
diff --git a/content/self-host/install/images/server-set-menu-zh.png b/content/self-host/install/images/server-set-menu-zh.png
new file mode 100644
index 0000000..3bdd122
Binary files /dev/null and b/content/self-host/install/images/server-set-menu-zh.png differ
diff --git a/content/self-host/install/images/server-set-menu.png b/content/self-host/install/images/server-set-menu.png
new file mode 100644
index 0000000..44c7994
Binary files /dev/null and b/content/self-host/install/images/server-set-menu.png differ
diff --git a/content/self-host/install/images/server-set-window-zh.png b/content/self-host/install/images/server-set-window-zh.png
new file mode 100644
index 0000000..6874669
Binary files /dev/null and b/content/self-host/install/images/server-set-window-zh.png differ
diff --git a/content/self-host/install/images/server-set-window.png b/content/self-host/install/images/server-set-window.png
new file mode 100644
index 0000000..ee41156
Binary files /dev/null and b/content/self-host/install/images/server-set-window.png differ
diff --git a/content/self-host/windows/_index.en.md b/content/self-host/windows/_index.en.md
new file mode 100644
index 0000000..d698ddd
--- /dev/null
+++ b/content/self-host/windows/_index.en.md
@@ -0,0 +1,42 @@
+---
+title: Windows
+weight: 20
+---
+
+
+### Install NodeJs
+Please [Download](https://nodejs.org/dist/v16.14.2/node-v16.14.2-x86.msi) and install.
+NodeJs is the runtime environment of pm2, so you need to install NodeJs first。
+
+### Install pm2
+Enter belows in cmd.exe, press the Enter key for each line, and run them line by line.
+```
+npm install -g pm2
+npm install pm2-windows-startup -g
+pm2-startup install
+```
+
+### Run hbbr and hbbs
+Download the windows version of [server program](https://github.com/rustdesk/rustdesk-server/releases), assuming you unzip it to the C drive. Run the following four lines of commands respectively.
+```
+cd c:\rustdesk-server-windows-x64
+pm2 start hbbr.exe -- -m
+pm2 start hbbs.exe -- -r -m
+pm2 save
+```
+
+### View log
+```
+pm2 log hbbr
+pm2 log hbbs
+```
+
+### Modify email
+For example, the new registered email address is test@test.com, and the public address of hbbr is test.hbbr.com
+```
+pm2 delete hbbr hbbs
+cd c:\rustdesk-server-windows-x64
+pm2 start hbbr.exe -- -m test@test.com
+pm2 start hbbs.exe -- -r test.hbbr.com -m test@test.com
+pm2 save
+```
\ No newline at end of file
diff --git a/content/self-host/windows/_index.fr.md b/content/self-host/windows/_index.fr.md
new file mode 100644
index 0000000..4c71090
--- /dev/null
+++ b/content/self-host/windows/_index.fr.md
@@ -0,0 +1,42 @@
+---
+title: Windows
+weight: 20
+---
+
+
+### Installer NodeJs
+Veuillez [Télécharger](https://nodejs.org/dist/v16.14.2/node-v16.14.2-x86.msi) et installer.
+NodeJs est l'environnement d'exécution de pm2, vous devez donc d'abord installer NodeJs。
+
+### Installer pm2
+Entrez ci-dessous dans cmd.exe, appuyez sur la touche Entrée pour chaque ligne et exécutez-les ligne par ligne.
+```
+npm install -g pm2
+npm install pm2-windows-startup -g
+pm2-startup install
+```
+
+### Exécutez hbbr et hbbs
+Téléchargez la version Windows du [programme serveur](https://github.com/rustdesk/rustdesk-server/releases), en supposant que vous la décompressez sur le lecteur C. Exécutez respectivement les quatre lignes de commandes suivantes.
+```
+cd c:\rustdesk-server-windows-x64
+pm2 start hbbr.exe -- -m
+pm2 start hbbs.exe -- -r -m
+pm2 save
+```
+
+### Afficher le journal
+```
+pm2 log hbbr
+pm2 log hbbs
+```
+
+### Modifier l'e-mail
+Par exemple, la nouvelle adresse e-mail enregistrée est test@test.com, et l'adresse publique de hbbr est test.hbbr.com
+```
+pm2 delete hbbr hbbs
+cd c:\rustdesk-server-windows-x64
+pm2 start hbbr.exe -- -m test@test.com
+pm2 start hbbs.exe -- -r test.hbbr.com -m test@test.com
+pm2 save
+```
\ No newline at end of file
diff --git a/content/self-host/windows/_index.zh.md b/content/self-host/windows/_index.zh.md
new file mode 100644
index 0000000..ed61bd4
--- /dev/null
+++ b/content/self-host/windows/_index.zh.md
@@ -0,0 +1,41 @@
+---
+title: Windows
+weight: 20
+---
+
+### 安装NodeJs
+请点击[下载](https://nodejs.org/dist/v16.14.2/node-v16.14.2-x86.msi)安装,可能会有点慢,如果卡顿太久,尝试关掉重新安装。
+NodeJs是pm2的运行时环境,所以要先安装NodeJs。
+
+### 安装pm2
+在cmd.exe中分别输入下面三行,每一行都要按回车键,一行一行运行。
+```
+npm install -g pm2
+npm install pm2-windows-startup -g
+pm2-startup install
+```
+
+### 运行hbbr和hbbs
+下载Windows版本[服务器程序](https://gitee.com/rustdesk/rustdesk-server/releases),假设你解压缩到了C盘下。分别运行下面四行命令。
+```
+cd c:\rustdesk-server-windows-x64
+pm2 start hbbr.exe -- -m 注册邮箱地址
+pm2 start hbbs.exe -- -r hbbr运行所在主机的地址 -m 注册邮箱地址
+pm2 save
+```
+
+### 查看log
+```
+pm2 log hbbr
+pm2 log hbbs
+```
+
+### 更换注册邮箱
+比如新的注册邮箱是test@test.com,hbbr的公网地址是test.hbbr.com
+```
+pm2 delete hbbr hbbs
+cd c:\rustdesk-server-windows-x64
+pm2 start hbbr.exe -- -m test@test.com
+pm2 start hbbs.exe -- -r test.hbbr.com -m test@test.com
+pm2 save
+```
\ No newline at end of file
diff --git a/content/shortcodes/_index.en.md b/content/shortcodes/_index.en.md
deleted file mode 100644
index 754bb0f..0000000
--- a/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/content/shortcodes/_index.fr.md b/content/shortcodes/_index.fr.md
deleted file mode 100644
index b084d9b..0000000
--- a/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/content/shortcodes/attachments.en.files/BachGavotteShort.mp3 b/content/shortcodes/attachments.en.files/BachGavotteShort.mp3
deleted file mode 100644
index 94e3d0e..0000000
Binary files a/content/shortcodes/attachments.en.files/BachGavotteShort.mp3 and /dev/null differ
diff --git a/content/shortcodes/attachments.en.files/Carroll_AliceAuPaysDesMerveilles.pdf b/content/shortcodes/attachments.en.files/Carroll_AliceAuPaysDesMerveilles.pdf
deleted file mode 100644
index 97377e9..0000000
Binary files a/content/shortcodes/attachments.en.files/Carroll_AliceAuPaysDesMerveilles.pdf and /dev/null differ
diff --git a/content/shortcodes/attachments.en.files/adivorciarsetoca00cape.pdf b/content/shortcodes/attachments.en.files/adivorciarsetoca00cape.pdf
deleted file mode 100644
index e589c73..0000000
Binary files a/content/shortcodes/attachments.en.files/adivorciarsetoca00cape.pdf and /dev/null differ
diff --git a/content/shortcodes/attachments.en.files/hugo.png b/content/shortcodes/attachments.en.files/hugo.png
deleted file mode 100644
index 48acf34..0000000
Binary files a/content/shortcodes/attachments.en.files/hugo.png and /dev/null differ
diff --git a/content/shortcodes/attachments.en.files/movieselectricsheep-flock-244-32500-2.mp4 b/content/shortcodes/attachments.en.files/movieselectricsheep-flock-244-32500-2.mp4
deleted file mode 100644
index 9f1fe56..0000000
Binary files a/content/shortcodes/attachments.en.files/movieselectricsheep-flock-244-32500-2.mp4 and /dev/null differ
diff --git a/content/shortcodes/attachments.en.files/small_file.txt b/content/shortcodes/attachments.en.files/small_file.txt
deleted file mode 100644
index 32fa983..0000000
--- a/content/shortcodes/attachments.en.files/small_file.txt
+++ /dev/null
@@ -1 +0,0 @@
-This file was downloaded from Hugo Learn Theme.
diff --git a/content/shortcodes/attachments.en.md b/content/shortcodes/attachments.en.md
deleted file mode 100644
index bea1350..0000000
--- a/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 expression, used to filter the attachments by file name. The **pattern** parameter value must be a [regular expression](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/content/shortcodes/attachments.fr.files/BachGavotteShort.mp3 b/content/shortcodes/attachments.fr.files/BachGavotteShort.mp3
deleted file mode 100644
index 94e3d0e..0000000
Binary files a/content/shortcodes/attachments.fr.files/BachGavotteShort.mp3 and /dev/null differ
diff --git a/content/shortcodes/attachments.fr.files/Carroll_AliceAuPaysDesMerveilles.pdf b/content/shortcodes/attachments.fr.files/Carroll_AliceAuPaysDesMerveilles.pdf
deleted file mode 100644
index 97377e9..0000000
Binary files a/content/shortcodes/attachments.fr.files/Carroll_AliceAuPaysDesMerveilles.pdf and /dev/null differ
diff --git a/content/shortcodes/attachments.fr.files/adivorciarsetoca00cape.pdf b/content/shortcodes/attachments.fr.files/adivorciarsetoca00cape.pdf
deleted file mode 100644
index e589c73..0000000
Binary files a/content/shortcodes/attachments.fr.files/adivorciarsetoca00cape.pdf and /dev/null differ
diff --git a/content/shortcodes/attachments.fr.files/hugo.png b/content/shortcodes/attachments.fr.files/hugo.png
deleted file mode 100644
index 48acf34..0000000
Binary files a/content/shortcodes/attachments.fr.files/hugo.png and /dev/null differ
diff --git a/content/shortcodes/attachments.fr.files/movieselectricsheep-flock-244-32500-2.mp4 b/content/shortcodes/attachments.fr.files/movieselectricsheep-flock-244-32500-2.mp4
deleted file mode 100644
index 9f1fe56..0000000
Binary files a/content/shortcodes/attachments.fr.files/movieselectricsheep-flock-244-32500-2.mp4 and /dev/null differ
diff --git a/content/shortcodes/attachments.fr.files/small_file.txt b/content/shortcodes/attachments.fr.files/small_file.txt
deleted file mode 100644
index 10a3446..0000000
--- a/content/shortcodes/attachments.fr.files/small_file.txt
+++ /dev/null
@@ -1 +0,0 @@
-Ce fichier a été téléchargé à partir du Hugo Learn Theme.
diff --git a/content/shortcodes/attachments.fr.md b/content/shortcodes/attachments.fr.md
deleted file mode 100644
index 49fc51b..0000000
--- a/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/content/shortcodes/button.en.md b/content/shortcodes/button.en.md
deleted file mode 100644
index 9fb92bd..0000000
--- a/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/content/shortcodes/button.fr.md b/content/shortcodes/button.fr.md
deleted file mode 100644
index 66e55af..0000000
--- a/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/content/shortcodes/children/_index.en.md b/content/shortcodes/children/_index.en.md
deleted file mode 100644
index 17bdcfb..0000000
--- a/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/content/shortcodes/children/_index.fr.md b/content/shortcodes/children/_index.fr.md
deleted file mode 100644
index 672c5ad..0000000
--- a/content/shortcodes/children/_index.fr.md
+++ /dev/null
@@ -1,45 +0,0 @@
----
-title : Children (Pages filles)
-description : Liste les pages filles de la page
----
-
-Utilisez le shortcode *children* pour lister les pages filles de la page et tous ses déscendants (pages filles de pages filles). Par défaut, le shortcode affiche des liens vers les pages filles.
-
-## Utilisation
-
-| Paramètre | Défaut | Description |
-|:--|:--|:--|
-| page | _current_ | Spécifie le nom de la page (nom de la section) à afficher |
-| style | "li" | Choisi le style à utiliser pour afficher les descendants. Cela peut être n'importe quel balise HTML |
-| showhidden | "false" | Quand *true*, pages filles cachées dans le menu seront affichées quand même |
-| description | "false" | Permet d'inclure le texte de la description de la page sous chaque entré de la liste.
quand aucune description existe pour la page, le shortcode prend les 70 premiers mots du contenu. [plus d'infos sur gohugo.io](https://gohugo.io/content/summaries/) |
-| depth | 1 | Nombre de descendants à afficher. Par exemple, si la valeur est 2, le shortcode va afficher 2 niveaux de pages filels.
**Astuce:** Utilisez 999 pour avoir tous les descendants|
-| sort | | Tri les pages filles par
Weight - PoidsName - NomIdentifier - Trier alphabétiquement par identifiant configuré dans le front matterURL - URL |
-
-## Démo
-
- {{%/* children */%}}
-
-{{% children %}}
-
- {{%/* children description="true" */%}}
-
-{{%children description="true" %}}
-
- {{%/* children depth="3" showhidden="true" */%}}
-
-{{% children depth="3" showhidden="true" %}}
-
- {{%/* children style="h2" depth="3" description="true" */%}}
-
-{{% children style="h2" depth="3" description="true" %}}
-
- {{%/* children style="div" depth="999" */%}}
-
-{{% children style="div" depth="999" %}}
-
-
-
-
-
-
diff --git a/content/shortcodes/children/children-1/_index.en.md b/content/shortcodes/children/children-1/_index.en.md
deleted file mode 100644
index d0c5179..0000000
--- a/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/content/shortcodes/children/children-1/_index.fr.md b/content/shortcodes/children/children-1/_index.fr.md
deleted file mode 100644
index 7737f50..0000000
--- a/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/content/shortcodes/children/children-1/children-1-1/_index.en.md b/content/shortcodes/children/children-1/children-1-1/_index.en.md
deleted file mode 100644
index a4982f9..0000000
--- a/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/content/shortcodes/children/children-1/children-1-1/_index.fr.md b/content/shortcodes/children/children-1/children-1-1/_index.fr.md
deleted file mode 100644
index e39cb58..0000000
--- a/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/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.en.md b/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.en.md
deleted file mode 100644
index 5ce56f4..0000000
--- a/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/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.fr.md b/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.fr.md
deleted file mode 100644
index 31d2cd1..0000000
--- a/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/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.en.md b/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/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/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.fr.md b/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/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/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/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/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/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/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/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/content/shortcodes/children/children-2/_index.en.md b/content/shortcodes/children/children-2/_index.en.md
deleted file mode 100644
index a96140c..0000000
--- a/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/content/shortcodes/children/children-2/_index.fr.md b/content/shortcodes/children/children-2/_index.fr.md
deleted file mode 100644
index a96140c..0000000
--- a/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/content/shortcodes/children/children-2/test3.en.md b/content/shortcodes/children/children-2/test3.en.md
deleted file mode 100644
index f603d4c..0000000
--- a/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/content/shortcodes/children/children-2/test3.fr.md b/content/shortcodes/children/children-2/test3.fr.md
deleted file mode 100644
index 6d649e8..0000000
--- a/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/content/shortcodes/children/children-3/_index.en.md b/content/shortcodes/children/children-3/_index.en.md
deleted file mode 100644
index f36f861..0000000
--- a/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/content/shortcodes/children/children-3/_index.fr.md b/content/shortcodes/children/children-3/_index.fr.md
deleted file mode 100644
index 1501cc8..0000000
--- a/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/content/shortcodes/children/children-4/_index.en.md b/content/shortcodes/children/children-4/_index.en.md
deleted file mode 100644
index b9f042d..0000000
--- a/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/content/shortcodes/children/children-4/_index.fr.md b/content/shortcodes/children/children-4/_index.fr.md
deleted file mode 100644
index 6735e50..0000000
--- a/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/content/shortcodes/children/test.en.md b/content/shortcodes/children/test.en.md
deleted file mode 100644
index 045f0a1..0000000
--- a/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/content/shortcodes/children/test.fr.md b/content/shortcodes/children/test.fr.md
deleted file mode 100644
index dd6cc3c..0000000
--- a/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/content/shortcodes/expand.en.md b/content/shortcodes/expand.en.md
deleted file mode 100644
index dff1906..0000000
--- a/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/content/shortcodes/expand.fr.md b/content/shortcodes/expand.fr.md
deleted file mode 100644
index efb86a3..0000000
--- a/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/content/shortcodes/mermaid.en.md b/content/shortcodes/mermaid.en.md
deleted file mode 100644
index b5ed111..0000000
--- a/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/content/shortcodes/mermaid.fr.md b/content/shortcodes/mermaid.fr.md
deleted file mode 100644
index 7798785..0000000
--- a/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/content/shortcodes/notice.en.md b/content/shortcodes/notice.en.md
deleted file mode 100644
index c82a6e9..0000000
--- a/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/content/shortcodes/notice.fr.md b/content/shortcodes/notice.fr.md
deleted file mode 100644
index 91e4d70..0000000
--- a/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/content/shortcodes/siteparam.en.md b/content/shortcodes/siteparam.en.md
deleted file mode 100644
index f431ffb..0000000
--- a/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/content/shortcodes/siteparam.fr.md b/content/shortcodes/siteparam.fr.md
deleted file mode 100644
index 508100b..0000000
--- a/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/content/shortcodes/tabs.en.md b/content/shortcodes/tabs.en.md
deleted file mode 100644
index d664eea..0000000
--- a/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/static/images/showcase/inteliver_docs.png b/static/images/showcase/inteliver_docs.png
deleted file mode 100644
index 9d9bf32..0000000
Binary files a/static/images/showcase/inteliver_docs.png and /dev/null differ
diff --git a/static/images/showcase/tat.png b/static/images/showcase/tat.png
deleted file mode 100644
index 35a5e63..0000000
Binary files a/static/images/showcase/tat.png and /dev/null differ
diff --git a/static/images/showcase/tshark_dev.png b/static/images/showcase/tshark_dev.png
deleted file mode 100644
index 08f81f9..0000000
Binary files a/static/images/showcase/tshark_dev.png and /dev/null differ