diff --git a/.github/actions/build_site/action.yaml b/.github/actions/build_site/action.yaml
index 159e6c6400..6fed374ae3 100644
--- a/.github/actions/build_site/action.yaml
+++ b/.github/actions/build_site/action.yaml
@@ -1,5 +1,5 @@
name: Build site
-description: Builds the Hugo exampleSite for later deploy on GitHub-Pages
+description: Builds the docs for later deploy on GitHub-Pages
runs:
using: composite
steps:
@@ -11,4 +11,4 @@ runs:
- name: Build site
shell: bash
run: |
- hugo --source ${GITHUB_WORKSPACE}/exampleSite --destination ${GITHUB_WORKSPACE}/../public --cleanDestinationDir --environment github --theme ${GITHUB_WORKSPACE}
+ hugo --source ${GITHUB_WORKSPACE}/docs --destination ${GITHUB_WORKSPACE}/../public --cleanDestinationDir --environment github --theme ${GITHUB_WORKSPACE}
diff --git a/.github/actions/check_milestone/action.yaml b/.github/actions/check_milestone/action.yaml
index 91490c9335..6e368eb386 100644
--- a/.github/actions/check_milestone/action.yaml
+++ b/.github/actions/check_milestone/action.yaml
@@ -76,7 +76,7 @@ runs:
id: releasenotes
shell: bash
run: |
- if [ -f "exampleSite/content/introduction/releasenotes/${{ steps.majorvers.outputs.value }}/${{ steps.minorvers.outputs.value }}.en.md" ]; then
+ if [ -f "docs/content/introduction/releasenotes/${{ steps.majorvers.outputs.value }}/${{ steps.minorvers.outputs.value }}.en.md" ]; then
echo "file_exists=true" >> $GITHUB_OUTPUT
else
echo "file_exists=false" >> $GITHUB_OUTPUT
diff --git a/.github/actions/release_milestone/action.yaml b/.github/actions/release_milestone/action.yaml
index df7901bdf1..7da93b95cd 100644
--- a/.github/actions/release_milestone/action.yaml
+++ b/.github/actions/release_milestone/action.yaml
@@ -108,27 +108,27 @@ runs:
GITHUB_TOKEN: ${{ inputs.github_token }}
GREN_GITHUB_TOKEN: ${{ inputs.github_token }}
run: |
- echo -e "+++\ndisableToc = false\nhidden = true\ntitle = \"Version ${{ steps.majorvers.outputs.value }}\"\ntype = \"releasenotes\"\nweight = -${{ steps.majorvers.outputs.value }}\n+++\n\n{{% pages showhidden=\"true\" showdivider=\"true\" %}}" > exampleSite/content/introduction/releasenotes/${{ steps.majorvers.outputs.value }}/_index.en.md
+ echo -e "+++\ndisableToc = false\nhidden = true\ntitle = \"Version ${{ steps.majorvers.outputs.value }}\"\ntype = \"releasenotes\"\nweight = -${{ steps.majorvers.outputs.value }}\n+++\n\n{{% pages showhidden=\"true\" showdivider=\"true\" %}}" > docs/content/introduction/releasenotes/${{ steps.majorvers.outputs.value }}/_index.en.md
- name: Update releasenotes front matter
uses: surahmansada/file-regex-replace@v1
with:
regex: '(\ntitle = "Version )\d+\.\d+("\n.*\nweight = -)\d+(\n)'
replacement: "$1${{ steps.majorvers.outputs.value }}.${{ steps.minorvers.outputs.value }}$2${{ steps.minorvers.outputs.value }}$3"
- include: exampleSite/content/introduction/releasenotes/${{ steps.majorvers.outputs.value }}/${{ steps.minorvers.outputs.value }}.en.md
+ include: docs/content/introduction/releasenotes/${{ steps.majorvers.outputs.value }}/${{ steps.minorvers.outputs.value }}.en.md
- name: Update releasenotes heading
uses: surahmansada/file-regex-replace@v1
with:
regex: '(.)[\n\r\s]*[\n\r]+##\s+.*?[\n\r][\n\r\s]*(.)'
replacement: "$1\n\n## ${{ steps.majorvers.outputs.value }}.${{ steps.minorvers.outputs.value }}.0 (${{ steps.date.outputs.time }}) {#${{ steps.majorvers.outputs.value }}-${{ steps.minorvers.outputs.value }}-0}\n\n$2"
- include: exampleSite/content/introduction/releasenotes/${{ steps.majorvers.outputs.value }}/${{ steps.minorvers.outputs.value }}.en.md
+ include: docs/content/introduction/releasenotes/${{ steps.majorvers.outputs.value }}/${{ steps.minorvers.outputs.value }}.en.md
- name: Generate piratish releasenotes
shell: bash
run: |
- echo -e "+++\ndisableToc = false\nhidden = true\ntitle = \"Version ${{ steps.majorvers.outputs.value }}\"\ntype = \"releasenotes\"\nweight = -${{ steps.majorvers.outputs.value }}\n+++\n{{< piratify >}}" > exampleSite/content/introduction/releasenotes/${{ steps.majorvers.outputs.value }}/_index.pir.md
- echo -e "+++\ndisableToc = false\nhidden = true\ntitle = \"Version ${{ steps.majorvers.outputs.value }}.${{ steps.minorvers.outputs.value }}\"\ntype = \"releasenotes\"\nweight = -${{ steps.minorvers.outputs.value }}\n+++\n{{< piratify >}}" > exampleSite/content/introduction/releasenotes/${{ steps.majorvers.outputs.value }}/${{ steps.minorvers.outputs.value }}.pir.md
+ echo -e "+++\ndisableToc = false\nhidden = true\ntitle = \"Version ${{ steps.majorvers.outputs.value }}\"\ntype = \"releasenotes\"\nweight = -${{ steps.majorvers.outputs.value }}\n+++\n{{< piratify >}}" > docs/content/introduction/releasenotes/${{ steps.majorvers.outputs.value }}/_index.pir.md
+ echo -e "+++\ndisableToc = false\nhidden = true\ntitle = \"Version ${{ steps.majorvers.outputs.value }}.${{ steps.minorvers.outputs.value }}\"\ntype = \"releasenotes\"\nweight = -${{ steps.minorvers.outputs.value }}\n+++\n{{< piratify >}}" > docs/content/introduction/releasenotes/${{ steps.majorvers.outputs.value }}/${{ steps.minorvers.outputs.value }}.pir.md
- name: Generate english changelogs
shell: bash
@@ -137,23 +137,23 @@ runs:
GITHUB_TOKEN: ${{ inputs.github_token }}
GREN_GITHUB_TOKEN: ${{ inputs.github_token }}
run: |
- mkdir -p exampleSite/content/introduction/changelog/${{ steps.majorvers.outputs.value }}/${{ steps.minorvers.outputs.value }}
- echo -e "+++\ndisableToc = false\nhidden = true\ntitle = \"Version ${{ steps.majorvers.outputs.value }}\"\ntype = \"changelog\"\nweight = -${{ steps.majorvers.outputs.value }}\n+++\n\n{{% pages showhidden=\"true\" showdivider=\"true\" %}}" > exampleSite/content/introduction/changelog/${{ steps.majorvers.outputs.value }}/_index.en.md
- echo -e "+++\ndisableToc = false\nhidden = true\ntitle = \"Version ${{ steps.majorvers.outputs.value }}.${{ steps.minorvers.outputs.value }}\"\ntype = \"changelog\"\nweight = -${{ steps.minorvers.outputs.value }}\n+++\n\n{{% pages showhidden=\"true\" showdivider=\"true\" reverse=\"true\" %}}" > exampleSite/content/introduction/changelog/${{ steps.majorvers.outputs.value }}/${{ steps.minorvers.outputs.value }}/_index.en.md
- npx github-release-notes@0.17.1 changelog --generate --changelog-filename exampleSite/content/introduction/changelog/${{ steps.majorvers.outputs.value }}/${{ steps.minorvers.outputs.value }}/${{ steps.paddedpatchvers.outputs.value }}.en.md --tags "$MILESTONE"
+ mkdir -p docs/content/introduction/changelog/${{ steps.majorvers.outputs.value }}/${{ steps.minorvers.outputs.value }}
+ echo -e "+++\ndisableToc = false\nhidden = true\ntitle = \"Version ${{ steps.majorvers.outputs.value }}\"\ntype = \"changelog\"\nweight = -${{ steps.majorvers.outputs.value }}\n+++\n\n{{% pages showhidden=\"true\" showdivider=\"true\" %}}" > docs/content/introduction/changelog/${{ steps.majorvers.outputs.value }}/_index.en.md
+ echo -e "+++\ndisableToc = false\nhidden = true\ntitle = \"Version ${{ steps.majorvers.outputs.value }}.${{ steps.minorvers.outputs.value }}\"\ntype = \"changelog\"\nweight = -${{ steps.minorvers.outputs.value }}\n+++\n\n{{% pages showhidden=\"true\" showdivider=\"true\" reverse=\"true\" %}}" > docs/content/introduction/changelog/${{ steps.majorvers.outputs.value }}/${{ steps.minorvers.outputs.value }}/_index.en.md
+ npx github-release-notes@0.17.1 changelog --generate --changelog-filename docs/content/introduction/changelog/${{ steps.majorvers.outputs.value }}/${{ steps.minorvers.outputs.value }}/${{ steps.paddedpatchvers.outputs.value }}.en.md --tags "$MILESTONE"
- name: Generate piratish changelogs
shell: bash
run: |
- echo -e "+++\ndisableToc = false\nhidden = true\ntitle = \"Version ${{ steps.majorvers.outputs.value }}\"\ntype = \"changelog\"\nweight = -${{ steps.majorvers.outputs.value }}\n+++\n{{< piratify >}}" > exampleSite/content/introduction/changelog/${{ steps.majorvers.outputs.value }}/_index.pir.md
- echo -e "+++\ndisableToc = false\nhidden = true\ntitle = \"Version ${{ steps.majorvers.outputs.value }}.${{ steps.minorvers.outputs.value }}\"\ntype = \"changelog\"\nweight = -${{ steps.minorvers.outputs.value }}\n+++\n{{< piratify >}}" > exampleSite/content/introduction/changelog/${{ steps.majorvers.outputs.value }}/${{ steps.minorvers.outputs.value }}/_index.pir.md
- echo -e "+++\n+++\n{{< piratify >}}" > exampleSite/content/introduction/changelog/${{ steps.majorvers.outputs.value }}/${{ steps.minorvers.outputs.value }}/${{ steps.paddedpatchvers.outputs.value }}.pir.md
+ echo -e "+++\ndisableToc = false\nhidden = true\ntitle = \"Version ${{ steps.majorvers.outputs.value }}\"\ntype = \"changelog\"\nweight = -${{ steps.majorvers.outputs.value }}\n+++\n{{< piratify >}}" > docs/content/introduction/changelog/${{ steps.majorvers.outputs.value }}/_index.pir.md
+ echo -e "+++\ndisableToc = false\nhidden = true\ntitle = \"Version ${{ steps.majorvers.outputs.value }}.${{ steps.minorvers.outputs.value }}\"\ntype = \"changelog\"\nweight = -${{ steps.minorvers.outputs.value }}\n+++\n{{< piratify >}}" > docs/content/introduction/changelog/${{ steps.majorvers.outputs.value }}/${{ steps.minorvers.outputs.value }}/_index.pir.md
+ echo -e "+++\n+++\n{{< piratify >}}" > docs/content/introduction/changelog/${{ steps.majorvers.outputs.value }}/${{ steps.minorvers.outputs.value }}/${{ steps.paddedpatchvers.outputs.value }}.pir.md
- name: Read changelog
id: changelog_docs
uses: guibranco/github-file-reader-action-v2@latest
with:
- path: exampleSite/content/introduction/changelog/${{ steps.majorvers.outputs.value }}/${{ steps.minorvers.outputs.value }}/${{ steps.paddedpatchvers.outputs.value }}.en.md
+ path: docs/content/introduction/changelog/${{ steps.majorvers.outputs.value }}/${{ steps.minorvers.outputs.value }}/${{ steps.paddedpatchvers.outputs.value }}.en.md
- name: Write changelog to CHANGELOG.md
uses: surahmansada/file-regex-replace@v1
diff --git a/.gitignore b/.gitignore
index 4b9b2f1620..2c4e5ab505 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,7 @@
.DS_Store
.githooks/hooks.log
.hugo_build.lock
+docs/public*
exampleSite/public*
hugo*.exe
*.xcf
diff --git a/.prettierignore b/.prettierignore
index 093a01811f..c5ec1450f2 100644
--- a/.prettierignore
+++ b/.prettierignore
@@ -1,11 +1,12 @@
assets/css/chroma*.css
assets/css/variables.css
assets/_relearn_searchindex.js
-exampleSite/.frontmatter
-exampleSite/content
-exampleSite/layouts
-exampleSite/static
-exampleSite/frontmatter.json
+docs/.frontmatter
+docs/content
+docs/layouts
+docs/static
+docs/frontmatter.json
+exampleSite
layouts
static/css/auto-complete.css
static/css/*.min.css
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2f16cc54f4..045f68b6e8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -104,7 +104,7 @@
### Enhancements
-- [**feature**][**change**] logo: move Relearn logo to exampleSite [#924](https://github.com/McShelby/hugo-theme-relearn/issues/924)
+- [**feature**][**change**] logo: move Relearn logo to docs [#924](https://github.com/McShelby/hugo-theme-relearn/issues/924)
- [**feature**][**change**] math: adhere to Hugo's default config params [#923](https://github.com/McShelby/hugo-theme-relearn/issues/923)
- [**feature**][**change**] theme: replace font [#922](https://github.com/McShelby/hugo-theme-relearn/issues/922)
- [**feature**][**breaking**] theme: reduce build time [#685](https://github.com/McShelby/hugo-theme-relearn/issues/685)
@@ -244,7 +244,7 @@
### Fixes
-- [**bug**] frontmatter: move frontmatter config for exampleSite out of root [#843](https://github.com/McShelby/hugo-theme-relearn/issues/843)
+- [**bug**] frontmatter: move frontmatter config for docs out of root [#843](https://github.com/McShelby/hugo-theme-relearn/issues/843)
- [**bug**] images: color outline using primary color [#838](https://github.com/McShelby/hugo-theme-relearn/issues/838)
- [**bug**][**breaking**] variant: avoid Hugo permission errors on build [#831](https://github.com/McShelby/hugo-theme-relearn/issues/831)
- [**bug**] theme: unwanted paragraph break with AsciiDoc [#829](https://github.com/McShelby/hugo-theme-relearn/issues/829)
@@ -1661,7 +1661,7 @@
### Fixes
-- [**bug**] exampleSite: fix links in official documentation [#168](https://github.com/McShelby/hugo-theme-relearn/issues/168)
+- [**bug**] docs: fix links in official documentation [#168](https://github.com/McShelby/hugo-theme-relearn/issues/168)
---
@@ -1912,7 +1912,7 @@
### Maintenance
-- [**task**] docs: include changelog in exampleSite [#33](https://github.com/McShelby/hugo-theme-relearn/issues/33)
+- [**task**] docs: include changelog [#33](https://github.com/McShelby/hugo-theme-relearn/issues/33)
---
diff --git a/exampleSite/.frontmatter/database/pinnedItemsDb.json b/docs/.frontmatter/database/pinnedItemsDb.json
similarity index 100%
rename from exampleSite/.frontmatter/database/pinnedItemsDb.json
rename to docs/.frontmatter/database/pinnedItemsDb.json
diff --git a/exampleSite/.frontmatter/database/taxonomyDb.json b/docs/.frontmatter/database/taxonomyDb.json
similarity index 100%
rename from exampleSite/.frontmatter/database/taxonomyDb.json
rename to docs/.frontmatter/database/taxonomyDb.json
diff --git a/exampleSite/config/_default/hugo.toml b/docs/config/_default/hugo.toml
similarity index 97%
rename from exampleSite/config/_default/hugo.toml
rename to docs/config/_default/hugo.toml
index fc3e3fdcc6..aba7b027fc 100644
--- a/exampleSite/config/_default/hugo.toml
+++ b/docs/config/_default/hugo.toml
@@ -58,7 +58,7 @@ summaryLength = 10
# style = 'tango'
[markup.goldmark]
- # this is required for the themes exampleSite to make the piratify shortcode work
+ # this is required for the themes docs to make the piratify shortcode work
duplicateResourceFiles = true
# activated for this showcase to use HTML and JavaScript; decide on your own needs;
@@ -247,10 +247,10 @@ summaryLength = 10
siteparam.test.text = 'A **nested** option with formatting'
# Extension to the image effects only for the docs.
imageEffects.bg-white = true
- # This is for support of the variantgenerator in the exampleSite, you don't need this!
+ # This is for support of the variantgenerator in the docs, you don't need this!
variantgenerator.force = true
[params.relearn.dependencies]
- # This is for support of the variantgenerator in the exampleSite, you don't need this!
+ # This is for support of the variantgenerator in the docs, you don't need this!
[params.relearn.dependencies.variantgenerator]
name = 'VariantGenerator'
diff --git a/exampleSite/config/_default/params.toml b/docs/config/_default/params.toml
similarity index 99%
rename from exampleSite/config/_default/params.toml
rename to docs/config/_default/params.toml
index 3beded477e..e8575a4a4a 100644
--- a/exampleSite/config/_default/params.toml
+++ b/docs/config/_default/params.toml
@@ -179,7 +179,7 @@ disableNextPrev = false
# `${FilePath}` was appended at the end of the value. This can be overridden
# in the pages frontmatter. This is useful if you want to give the opportunity
# for people to create merge request for your content.
-editURL = 'https://github.com/McShelby/hugo-theme-relearn/edit/main/exampleSite/content/${FilePath}'
+editURL = 'https://github.com/McShelby/hugo-theme-relearn/edit/main/docs/content/${FilePath}'
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Search
diff --git a/exampleSite/config/github/hugo.toml b/docs/config/github/hugo.toml
similarity index 100%
rename from exampleSite/config/github/hugo.toml
rename to docs/config/github/hugo.toml
diff --git a/exampleSite/config/testing/hugo.toml b/docs/config/testing/hugo.toml
similarity index 92%
rename from exampleSite/config/testing/hugo.toml
rename to docs/config/testing/hugo.toml
index 4e234b2b19..be1e2b06d7 100644
--- a/exampleSite/config/testing/hugo.toml
+++ b/docs/config/testing/hugo.toml
@@ -1,4 +1,4 @@
-# We disable this for testing the exampleSite; you must do so too
+# We disable this for testing; you must do so too
# if you want to use the themes parameter disableGeneratorVersion=true;
# otherwise Hugo will create a generator tag on your home page
disableHugoGeneratorInject = true
diff --git a/exampleSite/content/_index.en.md b/docs/content/_index.en.md
similarity index 100%
rename from exampleSite/content/_index.en.md
rename to docs/content/_index.en.md
diff --git a/exampleSite/content/_index.pir.md b/docs/content/_index.pir.md
similarity index 100%
rename from exampleSite/content/_index.pir.md
rename to docs/content/_index.pir.md
diff --git a/exampleSite/content/authoring/_index.en.md b/docs/content/authoring/_index.en.md
similarity index 100%
rename from exampleSite/content/authoring/_index.en.md
rename to docs/content/authoring/_index.en.md
diff --git a/exampleSite/content/authoring/_index.pir.md b/docs/content/authoring/_index.pir.md
similarity index 100%
rename from exampleSite/content/authoring/_index.pir.md
rename to docs/content/authoring/_index.pir.md
diff --git a/exampleSite/content/authoring/frontmatter/_index.en.md b/docs/content/authoring/frontmatter/_index.en.md
similarity index 100%
rename from exampleSite/content/authoring/frontmatter/_index.en.md
rename to docs/content/authoring/frontmatter/_index.en.md
diff --git a/exampleSite/content/authoring/frontmatter/_index.pir.md b/docs/content/authoring/frontmatter/_index.pir.md
similarity index 100%
rename from exampleSite/content/authoring/frontmatter/_index.pir.md
rename to docs/content/authoring/frontmatter/_index.pir.md
diff --git a/exampleSite/content/authoring/frontmatter/designs/_index.en.md b/docs/content/authoring/frontmatter/designs/_index.en.md
similarity index 100%
rename from exampleSite/content/authoring/frontmatter/designs/_index.en.md
rename to docs/content/authoring/frontmatter/designs/_index.en.md
diff --git a/exampleSite/content/authoring/frontmatter/designs/_index.pir.md b/docs/content/authoring/frontmatter/designs/_index.pir.md
similarity index 100%
rename from exampleSite/content/authoring/frontmatter/designs/_index.pir.md
rename to docs/content/authoring/frontmatter/designs/_index.pir.md
diff --git a/exampleSite/content/authoring/frontmatter/designs/pages-chapter.png b/docs/content/authoring/frontmatter/designs/pages-chapter.png
similarity index 100%
rename from exampleSite/content/authoring/frontmatter/designs/pages-chapter.png
rename to docs/content/authoring/frontmatter/designs/pages-chapter.png
diff --git a/exampleSite/content/authoring/frontmatter/designs/pages-default.png b/docs/content/authoring/frontmatter/designs/pages-default.png
similarity index 100%
rename from exampleSite/content/authoring/frontmatter/designs/pages-default.png
rename to docs/content/authoring/frontmatter/designs/pages-default.png
diff --git a/exampleSite/content/authoring/frontmatter/designs/pages-home.png b/docs/content/authoring/frontmatter/designs/pages-home.png
similarity index 100%
rename from exampleSite/content/authoring/frontmatter/designs/pages-home.png
rename to docs/content/authoring/frontmatter/designs/pages-home.png
diff --git a/exampleSite/content/authoring/frontmatter/linking/index.en.md b/docs/content/authoring/frontmatter/linking/index.en.md
similarity index 100%
rename from exampleSite/content/authoring/frontmatter/linking/index.en.md
rename to docs/content/authoring/frontmatter/linking/index.en.md
diff --git a/exampleSite/content/authoring/frontmatter/linking/index.pir.md b/docs/content/authoring/frontmatter/linking/index.pir.md
similarity index 100%
rename from exampleSite/content/authoring/frontmatter/linking/index.pir.md
rename to docs/content/authoring/frontmatter/linking/index.pir.md
diff --git a/exampleSite/content/authoring/frontmatter/menus/_index.en.md b/docs/content/authoring/frontmatter/menus/_index.en.md
similarity index 100%
rename from exampleSite/content/authoring/frontmatter/menus/_index.en.md
rename to docs/content/authoring/frontmatter/menus/_index.en.md
diff --git a/exampleSite/content/authoring/frontmatter/menus/_index.pir.md b/docs/content/authoring/frontmatter/menus/_index.pir.md
similarity index 100%
rename from exampleSite/content/authoring/frontmatter/menus/_index.pir.md
rename to docs/content/authoring/frontmatter/menus/_index.pir.md
diff --git a/exampleSite/content/authoring/frontmatter/reference/_index.en.md b/docs/content/authoring/frontmatter/reference/_index.en.md
similarity index 100%
rename from exampleSite/content/authoring/frontmatter/reference/_index.en.md
rename to docs/content/authoring/frontmatter/reference/_index.en.md
diff --git a/exampleSite/content/authoring/frontmatter/reference/_index.pir.md b/docs/content/authoring/frontmatter/reference/_index.pir.md
similarity index 100%
rename from exampleSite/content/authoring/frontmatter/reference/_index.pir.md
rename to docs/content/authoring/frontmatter/reference/_index.pir.md
diff --git a/exampleSite/content/authoring/frontmatter/reference/frontmatter.toml b/docs/content/authoring/frontmatter/reference/frontmatter.toml
similarity index 100%
rename from exampleSite/content/authoring/frontmatter/reference/frontmatter.toml
rename to docs/content/authoring/frontmatter/reference/frontmatter.toml
diff --git a/exampleSite/content/authoring/frontmatter/topbar/_index.en.md b/docs/content/authoring/frontmatter/topbar/_index.en.md
similarity index 99%
rename from exampleSite/content/authoring/frontmatter/topbar/_index.en.md
rename to docs/content/authoring/frontmatter/topbar/_index.en.md
index 8845fd26c1..0965bf8e90 100644
--- a/exampleSite/content/authoring/frontmatter/topbar/_index.en.md
+++ b/docs/content/authoring/frontmatter/topbar/_index.en.md
@@ -48,7 +48,7 @@ disableBreadcrumb = true
The value can contain the macro `${FilePath}` which will be replaced by the file path of your displayed page. If no `${FilePath}` is given in the value, the value is treated as if the `${FilePath}` was appended at the end of the value. This can be overridden in the pages front matter.
{{< multiconfig >}}
-editURL = 'https://github.com/McShelby/hugo-theme-relearn/edit/main/exampleSite/content/${FilePath}'
+editURL = 'https://github.com/McShelby/hugo-theme-relearn/edit/main/docs/content/${FilePath}'
{{< /multiconfig >}}
## Markdown Button
diff --git a/exampleSite/content/authoring/frontmatter/topbar/_index.pir.md b/docs/content/authoring/frontmatter/topbar/_index.pir.md
similarity index 100%
rename from exampleSite/content/authoring/frontmatter/topbar/_index.pir.md
rename to docs/content/authoring/frontmatter/topbar/_index.pir.md
diff --git a/exampleSite/content/authoring/imageeffects.en.md b/docs/content/authoring/imageeffects.en.md
similarity index 100%
rename from exampleSite/content/authoring/imageeffects.en.md
rename to docs/content/authoring/imageeffects.en.md
diff --git a/exampleSite/content/authoring/imageeffects.pir.md b/docs/content/authoring/imageeffects.pir.md
similarity index 100%
rename from exampleSite/content/authoring/imageeffects.pir.md
rename to docs/content/authoring/imageeffects.pir.md
diff --git a/exampleSite/content/authoring/markdown.en.md b/docs/content/authoring/markdown.en.md
similarity index 100%
rename from exampleSite/content/authoring/markdown.en.md
rename to docs/content/authoring/markdown.en.md
diff --git a/exampleSite/content/authoring/markdown.pir.md b/docs/content/authoring/markdown.pir.md
similarity index 100%
rename from exampleSite/content/authoring/markdown.pir.md
rename to docs/content/authoring/markdown.pir.md
diff --git a/exampleSite/content/authoring/meta/_index.en.md b/docs/content/authoring/meta/_index.en.md
similarity index 100%
rename from exampleSite/content/authoring/meta/_index.en.md
rename to docs/content/authoring/meta/_index.en.md
diff --git a/exampleSite/content/authoring/meta/_index.pir.md b/docs/content/authoring/meta/_index.pir.md
similarity index 100%
rename from exampleSite/content/authoring/meta/_index.pir.md
rename to docs/content/authoring/meta/_index.pir.md
diff --git a/exampleSite/content/authoring/structure/index.en.md b/docs/content/authoring/structure/index.en.md
similarity index 100%
rename from exampleSite/content/authoring/structure/index.en.md
rename to docs/content/authoring/structure/index.en.md
diff --git a/exampleSite/content/authoring/structure/index.pir.md b/docs/content/authoring/structure/index.pir.md
similarity index 100%
rename from exampleSite/content/authoring/structure/index.pir.md
rename to docs/content/authoring/structure/index.pir.md
diff --git a/exampleSite/content/configuration/_index.en.md b/docs/content/configuration/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/_index.en.md
rename to docs/content/configuration/_index.en.md
diff --git a/exampleSite/content/configuration/_index.pir.md b/docs/content/configuration/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/_index.pir.md
rename to docs/content/configuration/_index.pir.md
diff --git a/exampleSite/content/configuration/branding/_index.en.md b/docs/content/configuration/branding/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/branding/_index.en.md
rename to docs/content/configuration/branding/_index.en.md
diff --git a/exampleSite/content/configuration/branding/_index.pir.md b/docs/content/configuration/branding/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/branding/_index.pir.md
rename to docs/content/configuration/branding/_index.pir.md
diff --git a/exampleSite/content/configuration/branding/colors/_index.en.md b/docs/content/configuration/branding/colors/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/branding/colors/_index.en.md
rename to docs/content/configuration/branding/colors/_index.en.md
diff --git a/exampleSite/content/configuration/branding/colors/_index.pir.md b/docs/content/configuration/branding/colors/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/branding/colors/_index.pir.md
rename to docs/content/configuration/branding/colors/_index.pir.md
diff --git a/exampleSite/content/configuration/branding/generator/_index.en.md b/docs/content/configuration/branding/generator/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/branding/generator/_index.en.md
rename to docs/content/configuration/branding/generator/_index.en.md
diff --git a/exampleSite/content/configuration/branding/generator/_index.pir.md b/docs/content/configuration/branding/generator/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/branding/generator/_index.pir.md
rename to docs/content/configuration/branding/generator/_index.pir.md
diff --git a/exampleSite/content/configuration/branding/logo/_index.en.md b/docs/content/configuration/branding/logo/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/branding/logo/_index.en.md
rename to docs/content/configuration/branding/logo/_index.en.md
diff --git a/exampleSite/content/configuration/branding/logo/_index.pir.md b/docs/content/configuration/branding/logo/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/branding/logo/_index.pir.md
rename to docs/content/configuration/branding/logo/_index.pir.md
diff --git a/exampleSite/content/configuration/branding/modules/_index.en.md b/docs/content/configuration/branding/modules/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/branding/modules/_index.en.md
rename to docs/content/configuration/branding/modules/_index.en.md
diff --git a/exampleSite/content/configuration/branding/modules/_index.pir.md b/docs/content/configuration/branding/modules/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/branding/modules/_index.pir.md
rename to docs/content/configuration/branding/modules/_index.pir.md
diff --git a/exampleSite/content/configuration/content/_index.en.md b/docs/content/configuration/content/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/content/_index.en.md
rename to docs/content/configuration/content/_index.en.md
diff --git a/exampleSite/content/configuration/content/_index.pir.md b/docs/content/configuration/content/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/content/_index.pir.md
rename to docs/content/configuration/content/_index.pir.md
diff --git a/exampleSite/content/configuration/content/headings/index.en.md b/docs/content/configuration/content/headings/index.en.md
similarity index 100%
rename from exampleSite/content/configuration/content/headings/index.en.md
rename to docs/content/configuration/content/headings/index.en.md
diff --git a/exampleSite/content/configuration/content/headings/index.pir.md b/docs/content/configuration/content/headings/index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/content/headings/index.pir.md
rename to docs/content/configuration/content/headings/index.pir.md
diff --git a/exampleSite/content/configuration/content/hidden/_index.en.md b/docs/content/configuration/content/hidden/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/content/hidden/_index.en.md
rename to docs/content/configuration/content/hidden/_index.en.md
diff --git a/exampleSite/content/configuration/content/hidden/_index.pir.md b/docs/content/configuration/content/hidden/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/content/hidden/_index.pir.md
rename to docs/content/configuration/content/hidden/_index.pir.md
diff --git a/exampleSite/content/configuration/content/linking/index.en.md b/docs/content/configuration/content/linking/index.en.md
similarity index 100%
rename from exampleSite/content/configuration/content/linking/index.en.md
rename to docs/content/configuration/content/linking/index.en.md
diff --git a/exampleSite/content/configuration/content/linking/index.pir.md b/docs/content/configuration/content/linking/index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/content/linking/index.pir.md
rename to docs/content/configuration/content/linking/index.pir.md
diff --git a/exampleSite/content/configuration/content/titles/index.en.md b/docs/content/configuration/content/titles/index.en.md
similarity index 100%
rename from exampleSite/content/configuration/content/titles/index.en.md
rename to docs/content/configuration/content/titles/index.en.md
diff --git a/exampleSite/content/configuration/content/titles/index.pir.md b/docs/content/configuration/content/titles/index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/content/titles/index.pir.md
rename to docs/content/configuration/content/titles/index.pir.md
diff --git a/exampleSite/content/configuration/content/width/_index.en.md b/docs/content/configuration/content/width/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/content/width/_index.en.md
rename to docs/content/configuration/content/width/_index.en.md
diff --git a/exampleSite/content/configuration/content/width/_index.pir.md b/docs/content/configuration/content/width/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/content/width/_index.pir.md
rename to docs/content/configuration/content/width/_index.pir.md
diff --git a/exampleSite/content/configuration/customization/_index.en.md b/docs/content/configuration/customization/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/customization/_index.en.md
rename to docs/content/configuration/customization/_index.en.md
diff --git a/exampleSite/content/configuration/customization/_index.pir.md b/docs/content/configuration/customization/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/customization/_index.pir.md
rename to docs/content/configuration/customization/_index.pir.md
diff --git a/exampleSite/content/configuration/customization/designs/index.en.md b/docs/content/configuration/customization/designs/index.en.md
similarity index 97%
rename from exampleSite/content/configuration/customization/designs/index.en.md
rename to docs/content/configuration/customization/designs/index.en.md
index 20a6af30b8..fe38716044 100644
--- a/exampleSite/content/configuration/customization/designs/index.en.md
+++ b/docs/content/configuration/customization/designs/index.en.md
@@ -98,7 +98,7 @@ If you want to keep the general HTML framework and only change specific parts, y
For a real-world example, check out the `changelog` page design implementation
-- [`exampleSite/layouts/changelog/views/article.html`](https://github.com/McShelby/hugo-theme-relearn/blob/main/exampleSite/layouts/changelog/views/article.html)
+- [`docs/layouts/changelog/views/article.html`](https://github.com/McShelby/hugo-theme-relearn/blob/main/docs/layouts/changelog/views/article.html)
## Migration to Relearn 7 or higher
diff --git a/exampleSite/content/configuration/customization/designs/index.pir.md b/docs/content/configuration/customization/designs/index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/customization/designs/index.pir.md
rename to docs/content/configuration/customization/designs/index.pir.md
diff --git a/exampleSite/content/configuration/customization/extending/_index.en.md b/docs/content/configuration/customization/extending/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/customization/extending/_index.en.md
rename to docs/content/configuration/customization/extending/_index.en.md
diff --git a/exampleSite/content/configuration/customization/extending/_index.pir.md b/docs/content/configuration/customization/extending/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/customization/extending/_index.pir.md
rename to docs/content/configuration/customization/extending/_index.pir.md
diff --git a/exampleSite/content/configuration/customization/imageeffects.en.md b/docs/content/configuration/customization/imageeffects.en.md
similarity index 100%
rename from exampleSite/content/configuration/customization/imageeffects.en.md
rename to docs/content/configuration/customization/imageeffects.en.md
diff --git a/exampleSite/content/configuration/customization/imageeffects.pir.md b/docs/content/configuration/customization/imageeffects.pir.md
similarity index 100%
rename from exampleSite/content/configuration/customization/imageeffects.pir.md
rename to docs/content/configuration/customization/imageeffects.pir.md
diff --git a/exampleSite/content/configuration/customization/outputformats/_index.en.md b/docs/content/configuration/customization/outputformats/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/customization/outputformats/_index.en.md
rename to docs/content/configuration/customization/outputformats/_index.en.md
diff --git a/exampleSite/content/configuration/customization/outputformats/_index.pir.md b/docs/content/configuration/customization/outputformats/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/customization/outputformats/_index.pir.md
rename to docs/content/configuration/customization/outputformats/_index.pir.md
diff --git a/exampleSite/content/configuration/customization/partials/index.en.md b/docs/content/configuration/customization/partials/index.en.md
similarity index 100%
rename from exampleSite/content/configuration/customization/partials/index.en.md
rename to docs/content/configuration/customization/partials/index.en.md
diff --git a/exampleSite/content/configuration/customization/partials/index.pir.md b/docs/content/configuration/customization/partials/index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/customization/partials/index.pir.md
rename to docs/content/configuration/customization/partials/index.pir.md
diff --git a/exampleSite/content/configuration/customization/taxonomy.en.md b/docs/content/configuration/customization/taxonomy.en.md
similarity index 100%
rename from exampleSite/content/configuration/customization/taxonomy.en.md
rename to docs/content/configuration/customization/taxonomy.en.md
diff --git a/exampleSite/content/configuration/customization/taxonomy.pir.md b/docs/content/configuration/customization/taxonomy.pir.md
similarity index 100%
rename from exampleSite/content/configuration/customization/taxonomy.pir.md
rename to docs/content/configuration/customization/taxonomy.pir.md
diff --git a/exampleSite/content/configuration/customization/topbar/_index.en.md b/docs/content/configuration/customization/topbar/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/customization/topbar/_index.en.md
rename to docs/content/configuration/customization/topbar/_index.en.md
diff --git a/exampleSite/content/configuration/customization/topbar/_index.pir.md b/docs/content/configuration/customization/topbar/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/customization/topbar/_index.pir.md
rename to docs/content/configuration/customization/topbar/_index.pir.md
diff --git a/exampleSite/content/configuration/customization/topbar/topbar-areas.png b/docs/content/configuration/customization/topbar/topbar-areas.png
similarity index 100%
rename from exampleSite/content/configuration/customization/topbar/topbar-areas.png
rename to docs/content/configuration/customization/topbar/topbar-areas.png
diff --git a/exampleSite/content/configuration/customization/topbar/topbar-closed.png b/docs/content/configuration/customization/topbar/topbar-closed.png
similarity index 100%
rename from exampleSite/content/configuration/customization/topbar/topbar-closed.png
rename to docs/content/configuration/customization/topbar/topbar-closed.png
diff --git a/exampleSite/content/configuration/reference/_index.en.md b/docs/content/configuration/reference/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/reference/_index.en.md
rename to docs/content/configuration/reference/_index.en.md
diff --git a/exampleSite/content/configuration/reference/_index.pir.md b/docs/content/configuration/reference/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/reference/_index.pir.md
rename to docs/content/configuration/reference/_index.pir.md
diff --git a/exampleSite/content/configuration/sidebar/_index.en.md b/docs/content/configuration/sidebar/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/sidebar/_index.en.md
rename to docs/content/configuration/sidebar/_index.en.md
diff --git a/exampleSite/content/configuration/sidebar/_index.pir.md b/docs/content/configuration/sidebar/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/sidebar/_index.pir.md
rename to docs/content/configuration/sidebar/_index.pir.md
diff --git a/exampleSite/content/configuration/sidebar/headerfooter/_index.en.md b/docs/content/configuration/sidebar/headerfooter/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/sidebar/headerfooter/_index.en.md
rename to docs/content/configuration/sidebar/headerfooter/_index.en.md
diff --git a/exampleSite/content/configuration/sidebar/headerfooter/_index.pir.md b/docs/content/configuration/sidebar/headerfooter/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/sidebar/headerfooter/_index.pir.md
rename to docs/content/configuration/sidebar/headerfooter/_index.pir.md
diff --git a/exampleSite/content/configuration/sidebar/headerfooter/home_button_defaults.png b/docs/content/configuration/sidebar/headerfooter/home_button_defaults.png
similarity index 100%
rename from exampleSite/content/configuration/sidebar/headerfooter/home_button_defaults.png
rename to docs/content/configuration/sidebar/headerfooter/home_button_defaults.png
diff --git a/exampleSite/content/configuration/sidebar/menus/_index.en.md b/docs/content/configuration/sidebar/menus/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/sidebar/menus/_index.en.md
rename to docs/content/configuration/sidebar/menus/_index.en.md
diff --git a/exampleSite/content/configuration/sidebar/menus/_index.pir.md b/docs/content/configuration/sidebar/menus/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/sidebar/menus/_index.pir.md
rename to docs/content/configuration/sidebar/menus/_index.pir.md
diff --git a/exampleSite/content/configuration/sidebar/search/_index.en.md b/docs/content/configuration/sidebar/search/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/sidebar/search/_index.en.md
rename to docs/content/configuration/sidebar/search/_index.en.md
diff --git a/exampleSite/content/configuration/sidebar/search/_index.pir.md b/docs/content/configuration/sidebar/search/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/sidebar/search/_index.pir.md
rename to docs/content/configuration/sidebar/search/_index.pir.md
diff --git a/exampleSite/content/configuration/sidebar/width/_index.en.md b/docs/content/configuration/sidebar/width/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/sidebar/width/_index.en.md
rename to docs/content/configuration/sidebar/width/_index.en.md
diff --git a/exampleSite/content/configuration/sidebar/width/_index.pir.md b/docs/content/configuration/sidebar/width/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/sidebar/width/_index.pir.md
rename to docs/content/configuration/sidebar/width/_index.pir.md
diff --git a/exampleSite/content/configuration/sitemanagement/_index.en.md b/docs/content/configuration/sitemanagement/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/sitemanagement/_index.en.md
rename to docs/content/configuration/sitemanagement/_index.en.md
diff --git a/exampleSite/content/configuration/sitemanagement/_index.pir.md b/docs/content/configuration/sitemanagement/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/sitemanagement/_index.pir.md
rename to docs/content/configuration/sitemanagement/_index.pir.md
diff --git a/exampleSite/content/configuration/sitemanagement/deployment/_index.en.md b/docs/content/configuration/sitemanagement/deployment/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/sitemanagement/deployment/_index.en.md
rename to docs/content/configuration/sitemanagement/deployment/_index.en.md
diff --git a/exampleSite/content/configuration/sitemanagement/deployment/_index.pir.md b/docs/content/configuration/sitemanagement/deployment/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/sitemanagement/deployment/_index.pir.md
rename to docs/content/configuration/sitemanagement/deployment/_index.pir.md
diff --git a/exampleSite/content/configuration/sitemanagement/meta/_index.en.md b/docs/content/configuration/sitemanagement/meta/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/sitemanagement/meta/_index.en.md
rename to docs/content/configuration/sitemanagement/meta/_index.en.md
diff --git a/exampleSite/content/configuration/sitemanagement/meta/_index.pir.md b/docs/content/configuration/sitemanagement/meta/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/sitemanagement/meta/_index.pir.md
rename to docs/content/configuration/sitemanagement/meta/_index.pir.md
diff --git a/exampleSite/content/configuration/sitemanagement/multilingual/_index.en.md b/docs/content/configuration/sitemanagement/multilingual/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/sitemanagement/multilingual/_index.en.md
rename to docs/content/configuration/sitemanagement/multilingual/_index.en.md
diff --git a/exampleSite/content/configuration/sitemanagement/multilingual/_index.pir.md b/docs/content/configuration/sitemanagement/multilingual/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/sitemanagement/multilingual/_index.pir.md
rename to docs/content/configuration/sitemanagement/multilingual/_index.pir.md
diff --git a/exampleSite/content/configuration/sitemanagement/outputformats/_index.en.md b/docs/content/configuration/sitemanagement/outputformats/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/sitemanagement/outputformats/_index.en.md
rename to docs/content/configuration/sitemanagement/outputformats/_index.en.md
diff --git a/exampleSite/content/configuration/sitemanagement/outputformats/_index.pir.md b/docs/content/configuration/sitemanagement/outputformats/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/sitemanagement/outputformats/_index.pir.md
rename to docs/content/configuration/sitemanagement/outputformats/_index.pir.md
diff --git a/exampleSite/content/configuration/sitemanagement/stableoutput/_index.en.md b/docs/content/configuration/sitemanagement/stableoutput/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/sitemanagement/stableoutput/_index.en.md
rename to docs/content/configuration/sitemanagement/stableoutput/_index.en.md
diff --git a/exampleSite/content/configuration/sitemanagement/stableoutput/_index.pir.md b/docs/content/configuration/sitemanagement/stableoutput/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/sitemanagement/stableoutput/_index.pir.md
rename to docs/content/configuration/sitemanagement/stableoutput/_index.pir.md
diff --git a/exampleSite/content/configuration/sitemanagement/structure/_index.en.md b/docs/content/configuration/sitemanagement/structure/_index.en.md
similarity index 100%
rename from exampleSite/content/configuration/sitemanagement/structure/_index.en.md
rename to docs/content/configuration/sitemanagement/structure/_index.en.md
diff --git a/exampleSite/content/configuration/sitemanagement/structure/_index.pir.md b/docs/content/configuration/sitemanagement/structure/_index.pir.md
similarity index 100%
rename from exampleSite/content/configuration/sitemanagement/structure/_index.pir.md
rename to docs/content/configuration/sitemanagement/structure/_index.pir.md
diff --git a/exampleSite/content/development/_index.en.md b/docs/content/development/_index.en.md
similarity index 100%
rename from exampleSite/content/development/_index.en.md
rename to docs/content/development/_index.en.md
diff --git a/exampleSite/content/development/_index.pir.md b/docs/content/development/_index.pir.md
similarity index 100%
rename from exampleSite/content/development/_index.pir.md
rename to docs/content/development/_index.pir.md
diff --git a/exampleSite/content/development/contributing/_index.en.md b/docs/content/development/contributing/_index.en.md
similarity index 94%
rename from exampleSite/content/development/contributing/_index.en.md
rename to docs/content/development/contributing/_index.en.md
index 392c4157bd..d7606d0145 100644
--- a/exampleSite/content/development/contributing/_index.en.md
+++ b/docs/content/development/contributing/_index.en.md
@@ -16,7 +16,7 @@ Stay close to the Hugo way.
Don't use npm or any preprocessing, our contributors may not be front-end developers.
-Document new features in the exampleSite. This also contains entries to the [What's new](introduction/releasenotes) page.
+Document new features in the docs. This also contains entries to the [What's new](introduction/releasenotes) page.
Don't break existing features if you don't have to.
diff --git a/exampleSite/content/development/contributing/_index.pir.md b/docs/content/development/contributing/_index.pir.md
similarity index 100%
rename from exampleSite/content/development/contributing/_index.pir.md
rename to docs/content/development/contributing/_index.pir.md
diff --git a/exampleSite/content/development/maintaining/_index.en.md b/docs/content/development/maintaining/_index.en.md
similarity index 100%
rename from exampleSite/content/development/maintaining/_index.en.md
rename to docs/content/development/maintaining/_index.en.md
diff --git a/exampleSite/content/development/maintaining/_index.pir.md b/docs/content/development/maintaining/_index.pir.md
similarity index 100%
rename from exampleSite/content/development/maintaining/_index.pir.md
rename to docs/content/development/maintaining/_index.pir.md
diff --git a/exampleSite/content/development/screenshots/_index.en.md b/docs/content/development/screenshots/_index.en.md
similarity index 100%
rename from exampleSite/content/development/screenshots/_index.en.md
rename to docs/content/development/screenshots/_index.en.md
diff --git a/exampleSite/content/development/screenshots/_index.pir.md b/docs/content/development/screenshots/_index.pir.md
similarity index 100%
rename from exampleSite/content/development/screenshots/_index.pir.md
rename to docs/content/development/screenshots/_index.pir.md
diff --git a/exampleSite/content/frontmatter/_index.en.md b/docs/content/frontmatter/_index.en.md
similarity index 100%
rename from exampleSite/content/frontmatter/_index.en.md
rename to docs/content/frontmatter/_index.en.md
diff --git a/exampleSite/content/frontmatter/_index.pir.md b/docs/content/frontmatter/_index.pir.md
similarity index 100%
rename from exampleSite/content/frontmatter/_index.pir.md
rename to docs/content/frontmatter/_index.pir.md
diff --git a/exampleSite/content/introduction/_index.en.md b/docs/content/introduction/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/_index.en.md
rename to docs/content/introduction/_index.en.md
diff --git a/exampleSite/content/introduction/_index.pir.md b/docs/content/introduction/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/_index.pir.md
rename to docs/content/introduction/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/1/0/000.en.md b/docs/content/introduction/changelog/1/0/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/1/0/000.en.md
rename to docs/content/introduction/changelog/1/0/000.en.md
diff --git a/exampleSite/content/introduction/changelog/1/0/000.pir.md b/docs/content/introduction/changelog/1/0/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/1/0/000.pir.md
rename to docs/content/introduction/changelog/1/0/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/1/0/001.en.md b/docs/content/introduction/changelog/1/0/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/1/0/001.en.md
rename to docs/content/introduction/changelog/1/0/001.en.md
diff --git a/exampleSite/content/introduction/changelog/1/0/001.pir.md b/docs/content/introduction/changelog/1/0/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/1/0/001.pir.md
rename to docs/content/introduction/changelog/1/0/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/1/0/_index.en.md b/docs/content/introduction/changelog/1/0/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/1/0/_index.en.md
rename to docs/content/introduction/changelog/1/0/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/1/0/_index.pir.md b/docs/content/introduction/changelog/1/0/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/1/0/_index.pir.md
rename to docs/content/introduction/changelog/1/0/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/1/1/000.en.md b/docs/content/introduction/changelog/1/1/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/1/1/000.en.md
rename to docs/content/introduction/changelog/1/1/000.en.md
diff --git a/exampleSite/content/introduction/changelog/1/1/000.pir.md b/docs/content/introduction/changelog/1/1/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/1/1/000.pir.md
rename to docs/content/introduction/changelog/1/1/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/1/1/001.en.md b/docs/content/introduction/changelog/1/1/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/1/1/001.en.md
rename to docs/content/introduction/changelog/1/1/001.en.md
diff --git a/exampleSite/content/introduction/changelog/1/1/001.pir.md b/docs/content/introduction/changelog/1/1/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/1/1/001.pir.md
rename to docs/content/introduction/changelog/1/1/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/1/1/_index.en.md b/docs/content/introduction/changelog/1/1/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/1/1/_index.en.md
rename to docs/content/introduction/changelog/1/1/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/1/1/_index.pir.md b/docs/content/introduction/changelog/1/1/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/1/1/_index.pir.md
rename to docs/content/introduction/changelog/1/1/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/1/2/000.en.md b/docs/content/introduction/changelog/1/2/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/1/2/000.en.md
rename to docs/content/introduction/changelog/1/2/000.en.md
diff --git a/exampleSite/content/introduction/changelog/1/2/000.pir.md b/docs/content/introduction/changelog/1/2/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/1/2/000.pir.md
rename to docs/content/introduction/changelog/1/2/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/1/2/_index.en.md b/docs/content/introduction/changelog/1/2/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/1/2/_index.en.md
rename to docs/content/introduction/changelog/1/2/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/1/2/_index.pir.md b/docs/content/introduction/changelog/1/2/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/1/2/_index.pir.md
rename to docs/content/introduction/changelog/1/2/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/1/_index.en.md b/docs/content/introduction/changelog/1/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/1/_index.en.md
rename to docs/content/introduction/changelog/1/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/1/_index.pir.md b/docs/content/introduction/changelog/1/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/1/_index.pir.md
rename to docs/content/introduction/changelog/1/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/0/000.en.md b/docs/content/introduction/changelog/2/0/000.en.md
similarity index 95%
rename from exampleSite/content/introduction/changelog/2/0/000.en.md
rename to docs/content/introduction/changelog/2/0/000.en.md
index 8e4346f1e7..2dec78ff51 100644
--- a/exampleSite/content/introduction/changelog/2/0/000.en.md
+++ b/docs/content/introduction/changelog/2/0/000.en.md
@@ -27,4 +27,4 @@
### Maintenance
-- [**task**] docs: include changelog in exampleSite [#33](https://github.com/McShelby/hugo-theme-relearn/issues/33)
+- [**task**] docs: include changelog [#33](https://github.com/McShelby/hugo-theme-relearn/issues/33)
diff --git a/exampleSite/content/introduction/changelog/2/0/000.pir.md b/docs/content/introduction/changelog/2/0/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/0/000.pir.md
rename to docs/content/introduction/changelog/2/0/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/0/_index.en.md b/docs/content/introduction/changelog/2/0/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/0/_index.en.md
rename to docs/content/introduction/changelog/2/0/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/2/0/_index.pir.md b/docs/content/introduction/changelog/2/0/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/0/_index.pir.md
rename to docs/content/introduction/changelog/2/0/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/1/000.en.md b/docs/content/introduction/changelog/2/1/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/1/000.en.md
rename to docs/content/introduction/changelog/2/1/000.en.md
diff --git a/exampleSite/content/introduction/changelog/2/1/000.pir.md b/docs/content/introduction/changelog/2/1/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/1/000.pir.md
rename to docs/content/introduction/changelog/2/1/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/1/_index.en.md b/docs/content/introduction/changelog/2/1/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/1/_index.en.md
rename to docs/content/introduction/changelog/2/1/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/2/1/_index.pir.md b/docs/content/introduction/changelog/2/1/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/1/_index.pir.md
rename to docs/content/introduction/changelog/2/1/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/2/000.en.md b/docs/content/introduction/changelog/2/2/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/2/000.en.md
rename to docs/content/introduction/changelog/2/2/000.en.md
diff --git a/exampleSite/content/introduction/changelog/2/2/000.pir.md b/docs/content/introduction/changelog/2/2/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/2/000.pir.md
rename to docs/content/introduction/changelog/2/2/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/2/_index.en.md b/docs/content/introduction/changelog/2/2/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/2/_index.en.md
rename to docs/content/introduction/changelog/2/2/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/2/2/_index.pir.md b/docs/content/introduction/changelog/2/2/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/2/_index.pir.md
rename to docs/content/introduction/changelog/2/2/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/3/000.en.md b/docs/content/introduction/changelog/2/3/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/3/000.en.md
rename to docs/content/introduction/changelog/2/3/000.en.md
diff --git a/exampleSite/content/introduction/changelog/2/3/000.pir.md b/docs/content/introduction/changelog/2/3/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/3/000.pir.md
rename to docs/content/introduction/changelog/2/3/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/3/001.en.md b/docs/content/introduction/changelog/2/3/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/3/001.en.md
rename to docs/content/introduction/changelog/2/3/001.en.md
diff --git a/exampleSite/content/introduction/changelog/2/3/001.pir.md b/docs/content/introduction/changelog/2/3/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/3/001.pir.md
rename to docs/content/introduction/changelog/2/3/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/3/002.en.md b/docs/content/introduction/changelog/2/3/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/3/002.en.md
rename to docs/content/introduction/changelog/2/3/002.en.md
diff --git a/exampleSite/content/introduction/changelog/2/3/002.pir.md b/docs/content/introduction/changelog/2/3/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/3/002.pir.md
rename to docs/content/introduction/changelog/2/3/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/3/_index.en.md b/docs/content/introduction/changelog/2/3/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/3/_index.en.md
rename to docs/content/introduction/changelog/2/3/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/2/3/_index.pir.md b/docs/content/introduction/changelog/2/3/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/3/_index.pir.md
rename to docs/content/introduction/changelog/2/3/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/4/000.en.md b/docs/content/introduction/changelog/2/4/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/4/000.en.md
rename to docs/content/introduction/changelog/2/4/000.en.md
diff --git a/exampleSite/content/introduction/changelog/2/4/000.pir.md b/docs/content/introduction/changelog/2/4/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/4/000.pir.md
rename to docs/content/introduction/changelog/2/4/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/4/001.en.md b/docs/content/introduction/changelog/2/4/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/4/001.en.md
rename to docs/content/introduction/changelog/2/4/001.en.md
diff --git a/exampleSite/content/introduction/changelog/2/4/001.pir.md b/docs/content/introduction/changelog/2/4/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/4/001.pir.md
rename to docs/content/introduction/changelog/2/4/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/4/_index.en.md b/docs/content/introduction/changelog/2/4/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/4/_index.en.md
rename to docs/content/introduction/changelog/2/4/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/2/4/_index.pir.md b/docs/content/introduction/changelog/2/4/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/4/_index.pir.md
rename to docs/content/introduction/changelog/2/4/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/5/000.en.md b/docs/content/introduction/changelog/2/5/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/5/000.en.md
rename to docs/content/introduction/changelog/2/5/000.en.md
diff --git a/exampleSite/content/introduction/changelog/2/5/000.pir.md b/docs/content/introduction/changelog/2/5/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/5/000.pir.md
rename to docs/content/introduction/changelog/2/5/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/5/001.en.md b/docs/content/introduction/changelog/2/5/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/5/001.en.md
rename to docs/content/introduction/changelog/2/5/001.en.md
diff --git a/exampleSite/content/introduction/changelog/2/5/001.pir.md b/docs/content/introduction/changelog/2/5/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/5/001.pir.md
rename to docs/content/introduction/changelog/2/5/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/5/_index.en.md b/docs/content/introduction/changelog/2/5/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/5/_index.en.md
rename to docs/content/introduction/changelog/2/5/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/2/5/_index.pir.md b/docs/content/introduction/changelog/2/5/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/5/_index.pir.md
rename to docs/content/introduction/changelog/2/5/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/6/000.en.md b/docs/content/introduction/changelog/2/6/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/6/000.en.md
rename to docs/content/introduction/changelog/2/6/000.en.md
diff --git a/exampleSite/content/introduction/changelog/2/6/000.pir.md b/docs/content/introduction/changelog/2/6/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/6/000.pir.md
rename to docs/content/introduction/changelog/2/6/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/6/_index.en.md b/docs/content/introduction/changelog/2/6/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/6/_index.en.md
rename to docs/content/introduction/changelog/2/6/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/2/6/_index.pir.md b/docs/content/introduction/changelog/2/6/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/6/_index.pir.md
rename to docs/content/introduction/changelog/2/6/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/7/000.en.md b/docs/content/introduction/changelog/2/7/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/7/000.en.md
rename to docs/content/introduction/changelog/2/7/000.en.md
diff --git a/exampleSite/content/introduction/changelog/2/7/000.pir.md b/docs/content/introduction/changelog/2/7/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/7/000.pir.md
rename to docs/content/introduction/changelog/2/7/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/7/_index.en.md b/docs/content/introduction/changelog/2/7/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/7/_index.en.md
rename to docs/content/introduction/changelog/2/7/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/2/7/_index.pir.md b/docs/content/introduction/changelog/2/7/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/7/_index.pir.md
rename to docs/content/introduction/changelog/2/7/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/8/000.en.md b/docs/content/introduction/changelog/2/8/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/8/000.en.md
rename to docs/content/introduction/changelog/2/8/000.en.md
diff --git a/exampleSite/content/introduction/changelog/2/8/000.pir.md b/docs/content/introduction/changelog/2/8/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/8/000.pir.md
rename to docs/content/introduction/changelog/2/8/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/8/001.en.md b/docs/content/introduction/changelog/2/8/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/8/001.en.md
rename to docs/content/introduction/changelog/2/8/001.en.md
diff --git a/exampleSite/content/introduction/changelog/2/8/001.pir.md b/docs/content/introduction/changelog/2/8/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/8/001.pir.md
rename to docs/content/introduction/changelog/2/8/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/8/002.en.md b/docs/content/introduction/changelog/2/8/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/8/002.en.md
rename to docs/content/introduction/changelog/2/8/002.en.md
diff --git a/exampleSite/content/introduction/changelog/2/8/002.pir.md b/docs/content/introduction/changelog/2/8/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/8/002.pir.md
rename to docs/content/introduction/changelog/2/8/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/8/003.en.md b/docs/content/introduction/changelog/2/8/003.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/8/003.en.md
rename to docs/content/introduction/changelog/2/8/003.en.md
diff --git a/exampleSite/content/introduction/changelog/2/8/003.pir.md b/docs/content/introduction/changelog/2/8/003.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/8/003.pir.md
rename to docs/content/introduction/changelog/2/8/003.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/8/_index.en.md b/docs/content/introduction/changelog/2/8/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/8/_index.en.md
rename to docs/content/introduction/changelog/2/8/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/2/8/_index.pir.md b/docs/content/introduction/changelog/2/8/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/8/_index.pir.md
rename to docs/content/introduction/changelog/2/8/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/9/000.en.md b/docs/content/introduction/changelog/2/9/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/9/000.en.md
rename to docs/content/introduction/changelog/2/9/000.en.md
diff --git a/exampleSite/content/introduction/changelog/2/9/000.pir.md b/docs/content/introduction/changelog/2/9/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/9/000.pir.md
rename to docs/content/introduction/changelog/2/9/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/9/001.en.md b/docs/content/introduction/changelog/2/9/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/9/001.en.md
rename to docs/content/introduction/changelog/2/9/001.en.md
diff --git a/exampleSite/content/introduction/changelog/2/9/001.pir.md b/docs/content/introduction/changelog/2/9/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/9/001.pir.md
rename to docs/content/introduction/changelog/2/9/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/9/002.en.md b/docs/content/introduction/changelog/2/9/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/9/002.en.md
rename to docs/content/introduction/changelog/2/9/002.en.md
diff --git a/exampleSite/content/introduction/changelog/2/9/002.pir.md b/docs/content/introduction/changelog/2/9/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/9/002.pir.md
rename to docs/content/introduction/changelog/2/9/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/9/003.en.md b/docs/content/introduction/changelog/2/9/003.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/9/003.en.md
rename to docs/content/introduction/changelog/2/9/003.en.md
diff --git a/exampleSite/content/introduction/changelog/2/9/003.pir.md b/docs/content/introduction/changelog/2/9/003.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/9/003.pir.md
rename to docs/content/introduction/changelog/2/9/003.pir.md
diff --git a/docs/content/introduction/changelog/2/9/004.en.md b/docs/content/introduction/changelog/2/9/004.en.md
new file mode 100644
index 0000000000..a20018793d
--- /dev/null
+++ b/docs/content/introduction/changelog/2/9/004.en.md
@@ -0,0 +1,5 @@
+## 2.9.4 (2022-02-06)
+
+### Fixes
+
+- [**bug**] docs: fix links in official documentation [#168](https://github.com/McShelby/hugo-theme-relearn/issues/168)
diff --git a/exampleSite/content/introduction/changelog/2/9/004.pir.md b/docs/content/introduction/changelog/2/9/004.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/9/004.pir.md
rename to docs/content/introduction/changelog/2/9/004.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/9/005.en.md b/docs/content/introduction/changelog/2/9/005.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/9/005.en.md
rename to docs/content/introduction/changelog/2/9/005.en.md
diff --git a/exampleSite/content/introduction/changelog/2/9/005.pir.md b/docs/content/introduction/changelog/2/9/005.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/9/005.pir.md
rename to docs/content/introduction/changelog/2/9/005.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/9/006.en.md b/docs/content/introduction/changelog/2/9/006.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/9/006.en.md
rename to docs/content/introduction/changelog/2/9/006.en.md
diff --git a/exampleSite/content/introduction/changelog/2/9/006.pir.md b/docs/content/introduction/changelog/2/9/006.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/9/006.pir.md
rename to docs/content/introduction/changelog/2/9/006.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/9/_index.en.md b/docs/content/introduction/changelog/2/9/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/9/_index.en.md
rename to docs/content/introduction/changelog/2/9/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/2/9/_index.pir.md b/docs/content/introduction/changelog/2/9/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/9/_index.pir.md
rename to docs/content/introduction/changelog/2/9/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/2/_index.en.md b/docs/content/introduction/changelog/2/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/_index.en.md
rename to docs/content/introduction/changelog/2/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/2/_index.pir.md b/docs/content/introduction/changelog/2/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/2/_index.pir.md
rename to docs/content/introduction/changelog/2/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/3/0/000.en.md b/docs/content/introduction/changelog/3/0/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/0/000.en.md
rename to docs/content/introduction/changelog/3/0/000.en.md
diff --git a/exampleSite/content/introduction/changelog/3/0/000.pir.md b/docs/content/introduction/changelog/3/0/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/0/000.pir.md
rename to docs/content/introduction/changelog/3/0/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/3/0/001.en.md b/docs/content/introduction/changelog/3/0/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/0/001.en.md
rename to docs/content/introduction/changelog/3/0/001.en.md
diff --git a/exampleSite/content/introduction/changelog/3/0/001.pir.md b/docs/content/introduction/changelog/3/0/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/0/001.pir.md
rename to docs/content/introduction/changelog/3/0/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/3/0/002.en.md b/docs/content/introduction/changelog/3/0/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/0/002.en.md
rename to docs/content/introduction/changelog/3/0/002.en.md
diff --git a/exampleSite/content/introduction/changelog/3/0/002.pir.md b/docs/content/introduction/changelog/3/0/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/0/002.pir.md
rename to docs/content/introduction/changelog/3/0/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/3/0/003.en.md b/docs/content/introduction/changelog/3/0/003.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/0/003.en.md
rename to docs/content/introduction/changelog/3/0/003.en.md
diff --git a/exampleSite/content/introduction/changelog/3/0/003.pir.md b/docs/content/introduction/changelog/3/0/003.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/0/003.pir.md
rename to docs/content/introduction/changelog/3/0/003.pir.md
diff --git a/exampleSite/content/introduction/changelog/3/0/004.en.md b/docs/content/introduction/changelog/3/0/004.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/0/004.en.md
rename to docs/content/introduction/changelog/3/0/004.en.md
diff --git a/exampleSite/content/introduction/changelog/3/0/004.pir.md b/docs/content/introduction/changelog/3/0/004.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/0/004.pir.md
rename to docs/content/introduction/changelog/3/0/004.pir.md
diff --git a/exampleSite/content/introduction/changelog/3/0/_index.en.md b/docs/content/introduction/changelog/3/0/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/0/_index.en.md
rename to docs/content/introduction/changelog/3/0/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/3/0/_index.pir.md b/docs/content/introduction/changelog/3/0/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/0/_index.pir.md
rename to docs/content/introduction/changelog/3/0/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/3/1/000.en.md b/docs/content/introduction/changelog/3/1/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/1/000.en.md
rename to docs/content/introduction/changelog/3/1/000.en.md
diff --git a/exampleSite/content/introduction/changelog/3/1/000.pir.md b/docs/content/introduction/changelog/3/1/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/1/000.pir.md
rename to docs/content/introduction/changelog/3/1/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/3/1/001.en.md b/docs/content/introduction/changelog/3/1/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/1/001.en.md
rename to docs/content/introduction/changelog/3/1/001.en.md
diff --git a/exampleSite/content/introduction/changelog/3/1/001.pir.md b/docs/content/introduction/changelog/3/1/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/1/001.pir.md
rename to docs/content/introduction/changelog/3/1/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/3/1/_index.en.md b/docs/content/introduction/changelog/3/1/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/1/_index.en.md
rename to docs/content/introduction/changelog/3/1/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/3/1/_index.pir.md b/docs/content/introduction/changelog/3/1/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/1/_index.pir.md
rename to docs/content/introduction/changelog/3/1/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/3/2/000.en.md b/docs/content/introduction/changelog/3/2/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/2/000.en.md
rename to docs/content/introduction/changelog/3/2/000.en.md
diff --git a/exampleSite/content/introduction/changelog/3/2/000.pir.md b/docs/content/introduction/changelog/3/2/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/2/000.pir.md
rename to docs/content/introduction/changelog/3/2/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/3/2/001.en.md b/docs/content/introduction/changelog/3/2/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/2/001.en.md
rename to docs/content/introduction/changelog/3/2/001.en.md
diff --git a/exampleSite/content/introduction/changelog/3/2/001.pir.md b/docs/content/introduction/changelog/3/2/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/2/001.pir.md
rename to docs/content/introduction/changelog/3/2/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/3/2/_index.en.md b/docs/content/introduction/changelog/3/2/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/2/_index.en.md
rename to docs/content/introduction/changelog/3/2/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/3/2/_index.pir.md b/docs/content/introduction/changelog/3/2/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/2/_index.pir.md
rename to docs/content/introduction/changelog/3/2/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/3/3/000.en.md b/docs/content/introduction/changelog/3/3/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/3/000.en.md
rename to docs/content/introduction/changelog/3/3/000.en.md
diff --git a/exampleSite/content/introduction/changelog/3/3/000.pir.md b/docs/content/introduction/changelog/3/3/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/3/000.pir.md
rename to docs/content/introduction/changelog/3/3/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/3/3/_index.en.md b/docs/content/introduction/changelog/3/3/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/3/_index.en.md
rename to docs/content/introduction/changelog/3/3/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/3/3/_index.pir.md b/docs/content/introduction/changelog/3/3/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/3/_index.pir.md
rename to docs/content/introduction/changelog/3/3/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/3/4/000.en.md b/docs/content/introduction/changelog/3/4/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/4/000.en.md
rename to docs/content/introduction/changelog/3/4/000.en.md
diff --git a/exampleSite/content/introduction/changelog/3/4/000.pir.md b/docs/content/introduction/changelog/3/4/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/4/000.pir.md
rename to docs/content/introduction/changelog/3/4/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/3/4/001.en.md b/docs/content/introduction/changelog/3/4/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/4/001.en.md
rename to docs/content/introduction/changelog/3/4/001.en.md
diff --git a/exampleSite/content/introduction/changelog/3/4/001.pir.md b/docs/content/introduction/changelog/3/4/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/4/001.pir.md
rename to docs/content/introduction/changelog/3/4/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/3/4/_index.en.md b/docs/content/introduction/changelog/3/4/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/4/_index.en.md
rename to docs/content/introduction/changelog/3/4/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/3/4/_index.pir.md b/docs/content/introduction/changelog/3/4/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/4/_index.pir.md
rename to docs/content/introduction/changelog/3/4/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/3/_index.en.md b/docs/content/introduction/changelog/3/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/_index.en.md
rename to docs/content/introduction/changelog/3/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/3/_index.pir.md b/docs/content/introduction/changelog/3/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/3/_index.pir.md
rename to docs/content/introduction/changelog/3/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/4/0/000.en.md b/docs/content/introduction/changelog/4/0/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/0/000.en.md
rename to docs/content/introduction/changelog/4/0/000.en.md
diff --git a/exampleSite/content/introduction/changelog/4/0/000.pir.md b/docs/content/introduction/changelog/4/0/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/0/000.pir.md
rename to docs/content/introduction/changelog/4/0/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/4/0/001.en.md b/docs/content/introduction/changelog/4/0/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/0/001.en.md
rename to docs/content/introduction/changelog/4/0/001.en.md
diff --git a/exampleSite/content/introduction/changelog/4/0/001.pir.md b/docs/content/introduction/changelog/4/0/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/0/001.pir.md
rename to docs/content/introduction/changelog/4/0/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/4/0/002.en.md b/docs/content/introduction/changelog/4/0/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/0/002.en.md
rename to docs/content/introduction/changelog/4/0/002.en.md
diff --git a/exampleSite/content/introduction/changelog/4/0/002.pir.md b/docs/content/introduction/changelog/4/0/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/0/002.pir.md
rename to docs/content/introduction/changelog/4/0/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/4/0/003.en.md b/docs/content/introduction/changelog/4/0/003.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/0/003.en.md
rename to docs/content/introduction/changelog/4/0/003.en.md
diff --git a/exampleSite/content/introduction/changelog/4/0/003.pir.md b/docs/content/introduction/changelog/4/0/003.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/0/003.pir.md
rename to docs/content/introduction/changelog/4/0/003.pir.md
diff --git a/exampleSite/content/introduction/changelog/4/0/004.en.md b/docs/content/introduction/changelog/4/0/004.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/0/004.en.md
rename to docs/content/introduction/changelog/4/0/004.en.md
diff --git a/exampleSite/content/introduction/changelog/4/0/004.pir.md b/docs/content/introduction/changelog/4/0/004.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/0/004.pir.md
rename to docs/content/introduction/changelog/4/0/004.pir.md
diff --git a/exampleSite/content/introduction/changelog/4/0/005.en.md b/docs/content/introduction/changelog/4/0/005.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/0/005.en.md
rename to docs/content/introduction/changelog/4/0/005.en.md
diff --git a/exampleSite/content/introduction/changelog/4/0/005.pir.md b/docs/content/introduction/changelog/4/0/005.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/0/005.pir.md
rename to docs/content/introduction/changelog/4/0/005.pir.md
diff --git a/exampleSite/content/introduction/changelog/4/0/_index.en.md b/docs/content/introduction/changelog/4/0/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/0/_index.en.md
rename to docs/content/introduction/changelog/4/0/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/4/0/_index.pir.md b/docs/content/introduction/changelog/4/0/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/0/_index.pir.md
rename to docs/content/introduction/changelog/4/0/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/4/1/000.en.md b/docs/content/introduction/changelog/4/1/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/1/000.en.md
rename to docs/content/introduction/changelog/4/1/000.en.md
diff --git a/exampleSite/content/introduction/changelog/4/1/000.pir.md b/docs/content/introduction/changelog/4/1/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/1/000.pir.md
rename to docs/content/introduction/changelog/4/1/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/4/1/001.en.md b/docs/content/introduction/changelog/4/1/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/1/001.en.md
rename to docs/content/introduction/changelog/4/1/001.en.md
diff --git a/exampleSite/content/introduction/changelog/4/1/001.pir.md b/docs/content/introduction/changelog/4/1/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/1/001.pir.md
rename to docs/content/introduction/changelog/4/1/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/4/1/_index.en.md b/docs/content/introduction/changelog/4/1/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/1/_index.en.md
rename to docs/content/introduction/changelog/4/1/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/4/1/_index.pir.md b/docs/content/introduction/changelog/4/1/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/1/_index.pir.md
rename to docs/content/introduction/changelog/4/1/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/4/2/000.en.md b/docs/content/introduction/changelog/4/2/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/2/000.en.md
rename to docs/content/introduction/changelog/4/2/000.en.md
diff --git a/exampleSite/content/introduction/changelog/4/2/000.pir.md b/docs/content/introduction/changelog/4/2/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/2/000.pir.md
rename to docs/content/introduction/changelog/4/2/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/4/2/001.en.md b/docs/content/introduction/changelog/4/2/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/2/001.en.md
rename to docs/content/introduction/changelog/4/2/001.en.md
diff --git a/exampleSite/content/introduction/changelog/4/2/001.pir.md b/docs/content/introduction/changelog/4/2/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/2/001.pir.md
rename to docs/content/introduction/changelog/4/2/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/4/2/002.en.md b/docs/content/introduction/changelog/4/2/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/2/002.en.md
rename to docs/content/introduction/changelog/4/2/002.en.md
diff --git a/exampleSite/content/introduction/changelog/4/2/002.pir.md b/docs/content/introduction/changelog/4/2/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/2/002.pir.md
rename to docs/content/introduction/changelog/4/2/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/4/2/003.en.md b/docs/content/introduction/changelog/4/2/003.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/2/003.en.md
rename to docs/content/introduction/changelog/4/2/003.en.md
diff --git a/exampleSite/content/introduction/changelog/4/2/003.pir.md b/docs/content/introduction/changelog/4/2/003.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/2/003.pir.md
rename to docs/content/introduction/changelog/4/2/003.pir.md
diff --git a/exampleSite/content/introduction/changelog/4/2/004.en.md b/docs/content/introduction/changelog/4/2/004.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/2/004.en.md
rename to docs/content/introduction/changelog/4/2/004.en.md
diff --git a/exampleSite/content/introduction/changelog/4/2/004.pir.md b/docs/content/introduction/changelog/4/2/004.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/2/004.pir.md
rename to docs/content/introduction/changelog/4/2/004.pir.md
diff --git a/exampleSite/content/introduction/changelog/4/2/005.en.md b/docs/content/introduction/changelog/4/2/005.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/2/005.en.md
rename to docs/content/introduction/changelog/4/2/005.en.md
diff --git a/exampleSite/content/introduction/changelog/4/2/005.pir.md b/docs/content/introduction/changelog/4/2/005.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/2/005.pir.md
rename to docs/content/introduction/changelog/4/2/005.pir.md
diff --git a/exampleSite/content/introduction/changelog/4/2/_index.en.md b/docs/content/introduction/changelog/4/2/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/2/_index.en.md
rename to docs/content/introduction/changelog/4/2/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/4/2/_index.pir.md b/docs/content/introduction/changelog/4/2/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/2/_index.pir.md
rename to docs/content/introduction/changelog/4/2/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/4/_index.en.md b/docs/content/introduction/changelog/4/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/_index.en.md
rename to docs/content/introduction/changelog/4/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/4/_index.pir.md b/docs/content/introduction/changelog/4/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/4/_index.pir.md
rename to docs/content/introduction/changelog/4/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/0/000.en.md b/docs/content/introduction/changelog/5/0/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/0/000.en.md
rename to docs/content/introduction/changelog/5/0/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/0/000.pir.md b/docs/content/introduction/changelog/5/0/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/0/000.pir.md
rename to docs/content/introduction/changelog/5/0/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/0/001.en.md b/docs/content/introduction/changelog/5/0/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/0/001.en.md
rename to docs/content/introduction/changelog/5/0/001.en.md
diff --git a/exampleSite/content/introduction/changelog/5/0/001.pir.md b/docs/content/introduction/changelog/5/0/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/0/001.pir.md
rename to docs/content/introduction/changelog/5/0/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/0/002.en.md b/docs/content/introduction/changelog/5/0/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/0/002.en.md
rename to docs/content/introduction/changelog/5/0/002.en.md
diff --git a/exampleSite/content/introduction/changelog/5/0/002.pir.md b/docs/content/introduction/changelog/5/0/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/0/002.pir.md
rename to docs/content/introduction/changelog/5/0/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/0/003.en.md b/docs/content/introduction/changelog/5/0/003.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/0/003.en.md
rename to docs/content/introduction/changelog/5/0/003.en.md
diff --git a/exampleSite/content/introduction/changelog/5/0/003.pir.md b/docs/content/introduction/changelog/5/0/003.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/0/003.pir.md
rename to docs/content/introduction/changelog/5/0/003.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/0/_index.en.md b/docs/content/introduction/changelog/5/0/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/0/_index.en.md
rename to docs/content/introduction/changelog/5/0/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/0/_index.pir.md b/docs/content/introduction/changelog/5/0/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/0/_index.pir.md
rename to docs/content/introduction/changelog/5/0/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/1/000.en.md b/docs/content/introduction/changelog/5/1/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/1/000.en.md
rename to docs/content/introduction/changelog/5/1/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/1/000.pir.md b/docs/content/introduction/changelog/5/1/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/1/000.pir.md
rename to docs/content/introduction/changelog/5/1/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/1/001.en.md b/docs/content/introduction/changelog/5/1/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/1/001.en.md
rename to docs/content/introduction/changelog/5/1/001.en.md
diff --git a/exampleSite/content/introduction/changelog/5/1/001.pir.md b/docs/content/introduction/changelog/5/1/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/1/001.pir.md
rename to docs/content/introduction/changelog/5/1/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/1/002.en.md b/docs/content/introduction/changelog/5/1/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/1/002.en.md
rename to docs/content/introduction/changelog/5/1/002.en.md
diff --git a/exampleSite/content/introduction/changelog/5/1/002.pir.md b/docs/content/introduction/changelog/5/1/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/1/002.pir.md
rename to docs/content/introduction/changelog/5/1/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/1/_index.en.md b/docs/content/introduction/changelog/5/1/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/1/_index.en.md
rename to docs/content/introduction/changelog/5/1/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/1/_index.pir.md b/docs/content/introduction/changelog/5/1/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/1/_index.pir.md
rename to docs/content/introduction/changelog/5/1/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/10/000.en.md b/docs/content/introduction/changelog/5/10/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/10/000.en.md
rename to docs/content/introduction/changelog/5/10/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/10/000.pir.md b/docs/content/introduction/changelog/5/10/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/10/000.pir.md
rename to docs/content/introduction/changelog/5/10/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/10/001.en.md b/docs/content/introduction/changelog/5/10/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/10/001.en.md
rename to docs/content/introduction/changelog/5/10/001.en.md
diff --git a/exampleSite/content/introduction/changelog/5/10/001.pir.md b/docs/content/introduction/changelog/5/10/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/10/001.pir.md
rename to docs/content/introduction/changelog/5/10/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/10/002.en.md b/docs/content/introduction/changelog/5/10/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/10/002.en.md
rename to docs/content/introduction/changelog/5/10/002.en.md
diff --git a/exampleSite/content/introduction/changelog/5/10/002.pir.md b/docs/content/introduction/changelog/5/10/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/10/002.pir.md
rename to docs/content/introduction/changelog/5/10/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/10/_index.en.md b/docs/content/introduction/changelog/5/10/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/10/_index.en.md
rename to docs/content/introduction/changelog/5/10/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/10/_index.pir.md b/docs/content/introduction/changelog/5/10/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/10/_index.pir.md
rename to docs/content/introduction/changelog/5/10/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/11/000.en.md b/docs/content/introduction/changelog/5/11/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/11/000.en.md
rename to docs/content/introduction/changelog/5/11/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/11/000.pir.md b/docs/content/introduction/changelog/5/11/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/11/000.pir.md
rename to docs/content/introduction/changelog/5/11/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/11/001.en.md b/docs/content/introduction/changelog/5/11/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/11/001.en.md
rename to docs/content/introduction/changelog/5/11/001.en.md
diff --git a/exampleSite/content/introduction/changelog/5/11/001.pir.md b/docs/content/introduction/changelog/5/11/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/11/001.pir.md
rename to docs/content/introduction/changelog/5/11/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/11/002.en.md b/docs/content/introduction/changelog/5/11/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/11/002.en.md
rename to docs/content/introduction/changelog/5/11/002.en.md
diff --git a/exampleSite/content/introduction/changelog/5/11/002.pir.md b/docs/content/introduction/changelog/5/11/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/11/002.pir.md
rename to docs/content/introduction/changelog/5/11/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/11/_index.en.md b/docs/content/introduction/changelog/5/11/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/11/_index.en.md
rename to docs/content/introduction/changelog/5/11/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/11/_index.pir.md b/docs/content/introduction/changelog/5/11/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/11/_index.pir.md
rename to docs/content/introduction/changelog/5/11/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/12/000.en.md b/docs/content/introduction/changelog/5/12/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/12/000.en.md
rename to docs/content/introduction/changelog/5/12/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/12/000.pir.md b/docs/content/introduction/changelog/5/12/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/12/000.pir.md
rename to docs/content/introduction/changelog/5/12/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/12/001.en.md b/docs/content/introduction/changelog/5/12/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/12/001.en.md
rename to docs/content/introduction/changelog/5/12/001.en.md
diff --git a/exampleSite/content/introduction/changelog/5/12/001.pir.md b/docs/content/introduction/changelog/5/12/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/12/001.pir.md
rename to docs/content/introduction/changelog/5/12/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/12/002.en.md b/docs/content/introduction/changelog/5/12/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/12/002.en.md
rename to docs/content/introduction/changelog/5/12/002.en.md
diff --git a/exampleSite/content/introduction/changelog/5/12/002.pir.md b/docs/content/introduction/changelog/5/12/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/12/002.pir.md
rename to docs/content/introduction/changelog/5/12/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/12/003.en.md b/docs/content/introduction/changelog/5/12/003.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/12/003.en.md
rename to docs/content/introduction/changelog/5/12/003.en.md
diff --git a/exampleSite/content/introduction/changelog/5/12/003.pir.md b/docs/content/introduction/changelog/5/12/003.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/12/003.pir.md
rename to docs/content/introduction/changelog/5/12/003.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/12/004.en.md b/docs/content/introduction/changelog/5/12/004.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/12/004.en.md
rename to docs/content/introduction/changelog/5/12/004.en.md
diff --git a/exampleSite/content/introduction/changelog/5/12/004.pir.md b/docs/content/introduction/changelog/5/12/004.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/12/004.pir.md
rename to docs/content/introduction/changelog/5/12/004.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/12/005.en.md b/docs/content/introduction/changelog/5/12/005.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/12/005.en.md
rename to docs/content/introduction/changelog/5/12/005.en.md
diff --git a/exampleSite/content/introduction/changelog/5/12/005.pir.md b/docs/content/introduction/changelog/5/12/005.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/12/005.pir.md
rename to docs/content/introduction/changelog/5/12/005.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/12/006.en.md b/docs/content/introduction/changelog/5/12/006.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/12/006.en.md
rename to docs/content/introduction/changelog/5/12/006.en.md
diff --git a/exampleSite/content/introduction/changelog/5/12/006.pir.md b/docs/content/introduction/changelog/5/12/006.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/12/006.pir.md
rename to docs/content/introduction/changelog/5/12/006.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/12/_index.en.md b/docs/content/introduction/changelog/5/12/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/12/_index.en.md
rename to docs/content/introduction/changelog/5/12/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/12/_index.pir.md b/docs/content/introduction/changelog/5/12/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/12/_index.pir.md
rename to docs/content/introduction/changelog/5/12/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/13/000.en.md b/docs/content/introduction/changelog/5/13/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/13/000.en.md
rename to docs/content/introduction/changelog/5/13/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/13/000.pir.md b/docs/content/introduction/changelog/5/13/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/13/000.pir.md
rename to docs/content/introduction/changelog/5/13/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/13/001.en.md b/docs/content/introduction/changelog/5/13/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/13/001.en.md
rename to docs/content/introduction/changelog/5/13/001.en.md
diff --git a/exampleSite/content/introduction/changelog/5/13/001.pir.md b/docs/content/introduction/changelog/5/13/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/13/001.pir.md
rename to docs/content/introduction/changelog/5/13/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/13/002.en.md b/docs/content/introduction/changelog/5/13/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/13/002.en.md
rename to docs/content/introduction/changelog/5/13/002.en.md
diff --git a/exampleSite/content/introduction/changelog/5/13/002.pir.md b/docs/content/introduction/changelog/5/13/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/13/002.pir.md
rename to docs/content/introduction/changelog/5/13/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/13/_index.en.md b/docs/content/introduction/changelog/5/13/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/13/_index.en.md
rename to docs/content/introduction/changelog/5/13/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/13/_index.pir.md b/docs/content/introduction/changelog/5/13/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/13/_index.pir.md
rename to docs/content/introduction/changelog/5/13/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/14/000.en.md b/docs/content/introduction/changelog/5/14/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/14/000.en.md
rename to docs/content/introduction/changelog/5/14/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/14/000.pir.md b/docs/content/introduction/changelog/5/14/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/14/000.pir.md
rename to docs/content/introduction/changelog/5/14/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/14/001.en.md b/docs/content/introduction/changelog/5/14/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/14/001.en.md
rename to docs/content/introduction/changelog/5/14/001.en.md
diff --git a/exampleSite/content/introduction/changelog/5/14/001.pir.md b/docs/content/introduction/changelog/5/14/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/14/001.pir.md
rename to docs/content/introduction/changelog/5/14/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/14/002.en.md b/docs/content/introduction/changelog/5/14/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/14/002.en.md
rename to docs/content/introduction/changelog/5/14/002.en.md
diff --git a/exampleSite/content/introduction/changelog/5/14/002.pir.md b/docs/content/introduction/changelog/5/14/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/14/002.pir.md
rename to docs/content/introduction/changelog/5/14/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/14/003.en.md b/docs/content/introduction/changelog/5/14/003.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/14/003.en.md
rename to docs/content/introduction/changelog/5/14/003.en.md
diff --git a/exampleSite/content/introduction/changelog/5/14/003.pir.md b/docs/content/introduction/changelog/5/14/003.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/14/003.pir.md
rename to docs/content/introduction/changelog/5/14/003.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/14/_index.en.md b/docs/content/introduction/changelog/5/14/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/14/_index.en.md
rename to docs/content/introduction/changelog/5/14/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/14/_index.pir.md b/docs/content/introduction/changelog/5/14/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/14/_index.pir.md
rename to docs/content/introduction/changelog/5/14/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/15/000.en.md b/docs/content/introduction/changelog/5/15/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/15/000.en.md
rename to docs/content/introduction/changelog/5/15/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/15/000.pir.md b/docs/content/introduction/changelog/5/15/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/15/000.pir.md
rename to docs/content/introduction/changelog/5/15/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/15/001.en.md b/docs/content/introduction/changelog/5/15/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/15/001.en.md
rename to docs/content/introduction/changelog/5/15/001.en.md
diff --git a/exampleSite/content/introduction/changelog/5/15/001.pir.md b/docs/content/introduction/changelog/5/15/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/15/001.pir.md
rename to docs/content/introduction/changelog/5/15/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/15/002.en.md b/docs/content/introduction/changelog/5/15/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/15/002.en.md
rename to docs/content/introduction/changelog/5/15/002.en.md
diff --git a/exampleSite/content/introduction/changelog/5/15/002.pir.md b/docs/content/introduction/changelog/5/15/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/15/002.pir.md
rename to docs/content/introduction/changelog/5/15/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/15/_index.en.md b/docs/content/introduction/changelog/5/15/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/15/_index.en.md
rename to docs/content/introduction/changelog/5/15/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/15/_index.pir.md b/docs/content/introduction/changelog/5/15/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/15/_index.pir.md
rename to docs/content/introduction/changelog/5/15/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/16/000.en.md b/docs/content/introduction/changelog/5/16/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/16/000.en.md
rename to docs/content/introduction/changelog/5/16/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/16/000.pir.md b/docs/content/introduction/changelog/5/16/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/16/000.pir.md
rename to docs/content/introduction/changelog/5/16/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/16/001.en.md b/docs/content/introduction/changelog/5/16/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/16/001.en.md
rename to docs/content/introduction/changelog/5/16/001.en.md
diff --git a/exampleSite/content/introduction/changelog/5/16/001.pir.md b/docs/content/introduction/changelog/5/16/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/16/001.pir.md
rename to docs/content/introduction/changelog/5/16/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/16/002.en.md b/docs/content/introduction/changelog/5/16/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/16/002.en.md
rename to docs/content/introduction/changelog/5/16/002.en.md
diff --git a/exampleSite/content/introduction/changelog/5/16/002.pir.md b/docs/content/introduction/changelog/5/16/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/16/002.pir.md
rename to docs/content/introduction/changelog/5/16/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/16/_index.en.md b/docs/content/introduction/changelog/5/16/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/16/_index.en.md
rename to docs/content/introduction/changelog/5/16/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/16/_index.pir.md b/docs/content/introduction/changelog/5/16/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/16/_index.pir.md
rename to docs/content/introduction/changelog/5/16/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/17/000.en.md b/docs/content/introduction/changelog/5/17/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/17/000.en.md
rename to docs/content/introduction/changelog/5/17/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/17/000.pir.md b/docs/content/introduction/changelog/5/17/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/17/000.pir.md
rename to docs/content/introduction/changelog/5/17/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/17/001.en.md b/docs/content/introduction/changelog/5/17/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/17/001.en.md
rename to docs/content/introduction/changelog/5/17/001.en.md
diff --git a/exampleSite/content/introduction/changelog/5/17/001.pir.md b/docs/content/introduction/changelog/5/17/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/17/001.pir.md
rename to docs/content/introduction/changelog/5/17/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/17/_index.en.md b/docs/content/introduction/changelog/5/17/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/17/_index.en.md
rename to docs/content/introduction/changelog/5/17/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/17/_index.pir.md b/docs/content/introduction/changelog/5/17/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/17/_index.pir.md
rename to docs/content/introduction/changelog/5/17/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/18/000.en.md b/docs/content/introduction/changelog/5/18/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/18/000.en.md
rename to docs/content/introduction/changelog/5/18/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/18/000.pir.md b/docs/content/introduction/changelog/5/18/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/18/000.pir.md
rename to docs/content/introduction/changelog/5/18/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/18/_index.en.md b/docs/content/introduction/changelog/5/18/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/18/_index.en.md
rename to docs/content/introduction/changelog/5/18/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/18/_index.pir.md b/docs/content/introduction/changelog/5/18/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/18/_index.pir.md
rename to docs/content/introduction/changelog/5/18/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/19/000.en.md b/docs/content/introduction/changelog/5/19/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/19/000.en.md
rename to docs/content/introduction/changelog/5/19/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/19/000.pir.md b/docs/content/introduction/changelog/5/19/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/19/000.pir.md
rename to docs/content/introduction/changelog/5/19/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/19/_index.en.md b/docs/content/introduction/changelog/5/19/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/19/_index.en.md
rename to docs/content/introduction/changelog/5/19/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/19/_index.pir.md b/docs/content/introduction/changelog/5/19/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/19/_index.pir.md
rename to docs/content/introduction/changelog/5/19/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/2/000.en.md b/docs/content/introduction/changelog/5/2/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/2/000.en.md
rename to docs/content/introduction/changelog/5/2/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/2/000.pir.md b/docs/content/introduction/changelog/5/2/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/2/000.pir.md
rename to docs/content/introduction/changelog/5/2/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/2/001.en.md b/docs/content/introduction/changelog/5/2/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/2/001.en.md
rename to docs/content/introduction/changelog/5/2/001.en.md
diff --git a/exampleSite/content/introduction/changelog/5/2/001.pir.md b/docs/content/introduction/changelog/5/2/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/2/001.pir.md
rename to docs/content/introduction/changelog/5/2/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/2/002.en.md b/docs/content/introduction/changelog/5/2/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/2/002.en.md
rename to docs/content/introduction/changelog/5/2/002.en.md
diff --git a/exampleSite/content/introduction/changelog/5/2/002.pir.md b/docs/content/introduction/changelog/5/2/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/2/002.pir.md
rename to docs/content/introduction/changelog/5/2/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/2/003.en.md b/docs/content/introduction/changelog/5/2/003.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/2/003.en.md
rename to docs/content/introduction/changelog/5/2/003.en.md
diff --git a/exampleSite/content/introduction/changelog/5/2/003.pir.md b/docs/content/introduction/changelog/5/2/003.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/2/003.pir.md
rename to docs/content/introduction/changelog/5/2/003.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/2/004.en.md b/docs/content/introduction/changelog/5/2/004.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/2/004.en.md
rename to docs/content/introduction/changelog/5/2/004.en.md
diff --git a/exampleSite/content/introduction/changelog/5/2/004.pir.md b/docs/content/introduction/changelog/5/2/004.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/2/004.pir.md
rename to docs/content/introduction/changelog/5/2/004.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/2/_index.en.md b/docs/content/introduction/changelog/5/2/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/2/_index.en.md
rename to docs/content/introduction/changelog/5/2/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/2/_index.pir.md b/docs/content/introduction/changelog/5/2/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/2/_index.pir.md
rename to docs/content/introduction/changelog/5/2/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/20/000.en.md b/docs/content/introduction/changelog/5/20/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/20/000.en.md
rename to docs/content/introduction/changelog/5/20/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/20/000.pir.md b/docs/content/introduction/changelog/5/20/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/20/000.pir.md
rename to docs/content/introduction/changelog/5/20/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/20/_index.en.md b/docs/content/introduction/changelog/5/20/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/20/_index.en.md
rename to docs/content/introduction/changelog/5/20/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/20/_index.pir.md b/docs/content/introduction/changelog/5/20/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/20/_index.pir.md
rename to docs/content/introduction/changelog/5/20/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/21/000.en.md b/docs/content/introduction/changelog/5/21/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/21/000.en.md
rename to docs/content/introduction/changelog/5/21/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/21/000.pir.md b/docs/content/introduction/changelog/5/21/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/21/000.pir.md
rename to docs/content/introduction/changelog/5/21/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/21/_index.en.md b/docs/content/introduction/changelog/5/21/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/21/_index.en.md
rename to docs/content/introduction/changelog/5/21/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/21/_index.pir.md b/docs/content/introduction/changelog/5/21/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/21/_index.pir.md
rename to docs/content/introduction/changelog/5/21/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/22/000.en.md b/docs/content/introduction/changelog/5/22/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/22/000.en.md
rename to docs/content/introduction/changelog/5/22/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/22/000.pir.md b/docs/content/introduction/changelog/5/22/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/22/000.pir.md
rename to docs/content/introduction/changelog/5/22/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/22/001.en.md b/docs/content/introduction/changelog/5/22/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/22/001.en.md
rename to docs/content/introduction/changelog/5/22/001.en.md
diff --git a/exampleSite/content/introduction/changelog/5/22/001.pir.md b/docs/content/introduction/changelog/5/22/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/22/001.pir.md
rename to docs/content/introduction/changelog/5/22/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/22/_index.en.md b/docs/content/introduction/changelog/5/22/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/22/_index.en.md
rename to docs/content/introduction/changelog/5/22/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/22/_index.pir.md b/docs/content/introduction/changelog/5/22/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/22/_index.pir.md
rename to docs/content/introduction/changelog/5/22/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/23/000.en.md b/docs/content/introduction/changelog/5/23/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/23/000.en.md
rename to docs/content/introduction/changelog/5/23/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/23/000.pir.md b/docs/content/introduction/changelog/5/23/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/23/000.pir.md
rename to docs/content/introduction/changelog/5/23/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/23/001.en.md b/docs/content/introduction/changelog/5/23/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/23/001.en.md
rename to docs/content/introduction/changelog/5/23/001.en.md
diff --git a/exampleSite/content/introduction/changelog/5/23/001.pir.md b/docs/content/introduction/changelog/5/23/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/23/001.pir.md
rename to docs/content/introduction/changelog/5/23/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/23/002.en.md b/docs/content/introduction/changelog/5/23/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/23/002.en.md
rename to docs/content/introduction/changelog/5/23/002.en.md
diff --git a/exampleSite/content/introduction/changelog/5/23/002.pir.md b/docs/content/introduction/changelog/5/23/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/23/002.pir.md
rename to docs/content/introduction/changelog/5/23/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/23/_index.en.md b/docs/content/introduction/changelog/5/23/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/23/_index.en.md
rename to docs/content/introduction/changelog/5/23/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/23/_index.pir.md b/docs/content/introduction/changelog/5/23/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/23/_index.pir.md
rename to docs/content/introduction/changelog/5/23/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/24/000.en.md b/docs/content/introduction/changelog/5/24/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/24/000.en.md
rename to docs/content/introduction/changelog/5/24/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/24/000.pir.md b/docs/content/introduction/changelog/5/24/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/24/000.pir.md
rename to docs/content/introduction/changelog/5/24/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/24/001.en.md b/docs/content/introduction/changelog/5/24/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/24/001.en.md
rename to docs/content/introduction/changelog/5/24/001.en.md
diff --git a/exampleSite/content/introduction/changelog/5/24/001.pir.md b/docs/content/introduction/changelog/5/24/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/24/001.pir.md
rename to docs/content/introduction/changelog/5/24/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/24/002.en.md b/docs/content/introduction/changelog/5/24/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/24/002.en.md
rename to docs/content/introduction/changelog/5/24/002.en.md
diff --git a/exampleSite/content/introduction/changelog/5/24/002.pir.md b/docs/content/introduction/changelog/5/24/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/24/002.pir.md
rename to docs/content/introduction/changelog/5/24/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/24/003.en.md b/docs/content/introduction/changelog/5/24/003.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/24/003.en.md
rename to docs/content/introduction/changelog/5/24/003.en.md
diff --git a/exampleSite/content/introduction/changelog/5/24/003.pir.md b/docs/content/introduction/changelog/5/24/003.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/24/003.pir.md
rename to docs/content/introduction/changelog/5/24/003.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/24/_index.en.md b/docs/content/introduction/changelog/5/24/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/24/_index.en.md
rename to docs/content/introduction/changelog/5/24/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/24/_index.pir.md b/docs/content/introduction/changelog/5/24/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/24/_index.pir.md
rename to docs/content/introduction/changelog/5/24/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/25/000.en.md b/docs/content/introduction/changelog/5/25/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/25/000.en.md
rename to docs/content/introduction/changelog/5/25/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/25/000.pir.md b/docs/content/introduction/changelog/5/25/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/25/000.pir.md
rename to docs/content/introduction/changelog/5/25/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/25/_index.en.md b/docs/content/introduction/changelog/5/25/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/25/_index.en.md
rename to docs/content/introduction/changelog/5/25/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/25/_index.pir.md b/docs/content/introduction/changelog/5/25/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/25/_index.pir.md
rename to docs/content/introduction/changelog/5/25/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/26/000.en.md b/docs/content/introduction/changelog/5/26/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/26/000.en.md
rename to docs/content/introduction/changelog/5/26/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/26/000.pir.md b/docs/content/introduction/changelog/5/26/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/26/000.pir.md
rename to docs/content/introduction/changelog/5/26/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/26/001.en.md b/docs/content/introduction/changelog/5/26/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/26/001.en.md
rename to docs/content/introduction/changelog/5/26/001.en.md
diff --git a/exampleSite/content/introduction/changelog/5/26/001.pir.md b/docs/content/introduction/changelog/5/26/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/26/001.pir.md
rename to docs/content/introduction/changelog/5/26/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/26/002.en.md b/docs/content/introduction/changelog/5/26/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/26/002.en.md
rename to docs/content/introduction/changelog/5/26/002.en.md
diff --git a/exampleSite/content/introduction/changelog/5/26/002.pir.md b/docs/content/introduction/changelog/5/26/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/26/002.pir.md
rename to docs/content/introduction/changelog/5/26/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/26/_index.en.md b/docs/content/introduction/changelog/5/26/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/26/_index.en.md
rename to docs/content/introduction/changelog/5/26/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/26/_index.pir.md b/docs/content/introduction/changelog/5/26/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/26/_index.pir.md
rename to docs/content/introduction/changelog/5/26/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/27/000.en.md b/docs/content/introduction/changelog/5/27/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/27/000.en.md
rename to docs/content/introduction/changelog/5/27/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/27/000.pir.md b/docs/content/introduction/changelog/5/27/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/27/000.pir.md
rename to docs/content/introduction/changelog/5/27/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/27/_index.en.md b/docs/content/introduction/changelog/5/27/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/27/_index.en.md
rename to docs/content/introduction/changelog/5/27/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/27/_index.pir.md b/docs/content/introduction/changelog/5/27/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/27/_index.pir.md
rename to docs/content/introduction/changelog/5/27/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/3/000.en.md b/docs/content/introduction/changelog/5/3/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/3/000.en.md
rename to docs/content/introduction/changelog/5/3/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/3/000.pir.md b/docs/content/introduction/changelog/5/3/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/3/000.pir.md
rename to docs/content/introduction/changelog/5/3/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/3/001.en.md b/docs/content/introduction/changelog/5/3/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/3/001.en.md
rename to docs/content/introduction/changelog/5/3/001.en.md
diff --git a/exampleSite/content/introduction/changelog/5/3/001.pir.md b/docs/content/introduction/changelog/5/3/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/3/001.pir.md
rename to docs/content/introduction/changelog/5/3/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/3/002.en.md b/docs/content/introduction/changelog/5/3/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/3/002.en.md
rename to docs/content/introduction/changelog/5/3/002.en.md
diff --git a/exampleSite/content/introduction/changelog/5/3/002.pir.md b/docs/content/introduction/changelog/5/3/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/3/002.pir.md
rename to docs/content/introduction/changelog/5/3/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/3/003.en.md b/docs/content/introduction/changelog/5/3/003.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/3/003.en.md
rename to docs/content/introduction/changelog/5/3/003.en.md
diff --git a/exampleSite/content/introduction/changelog/5/3/003.pir.md b/docs/content/introduction/changelog/5/3/003.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/3/003.pir.md
rename to docs/content/introduction/changelog/5/3/003.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/3/_index.en.md b/docs/content/introduction/changelog/5/3/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/3/_index.en.md
rename to docs/content/introduction/changelog/5/3/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/3/_index.pir.md b/docs/content/introduction/changelog/5/3/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/3/_index.pir.md
rename to docs/content/introduction/changelog/5/3/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/4/000.en.md b/docs/content/introduction/changelog/5/4/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/4/000.en.md
rename to docs/content/introduction/changelog/5/4/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/4/000.pir.md b/docs/content/introduction/changelog/5/4/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/4/000.pir.md
rename to docs/content/introduction/changelog/5/4/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/4/001.en.md b/docs/content/introduction/changelog/5/4/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/4/001.en.md
rename to docs/content/introduction/changelog/5/4/001.en.md
diff --git a/exampleSite/content/introduction/changelog/5/4/001.pir.md b/docs/content/introduction/changelog/5/4/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/4/001.pir.md
rename to docs/content/introduction/changelog/5/4/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/4/002.en.md b/docs/content/introduction/changelog/5/4/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/4/002.en.md
rename to docs/content/introduction/changelog/5/4/002.en.md
diff --git a/exampleSite/content/introduction/changelog/5/4/002.pir.md b/docs/content/introduction/changelog/5/4/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/4/002.pir.md
rename to docs/content/introduction/changelog/5/4/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/4/003.en.md b/docs/content/introduction/changelog/5/4/003.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/4/003.en.md
rename to docs/content/introduction/changelog/5/4/003.en.md
diff --git a/exampleSite/content/introduction/changelog/5/4/003.pir.md b/docs/content/introduction/changelog/5/4/003.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/4/003.pir.md
rename to docs/content/introduction/changelog/5/4/003.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/4/_index.en.md b/docs/content/introduction/changelog/5/4/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/4/_index.en.md
rename to docs/content/introduction/changelog/5/4/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/4/_index.pir.md b/docs/content/introduction/changelog/5/4/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/4/_index.pir.md
rename to docs/content/introduction/changelog/5/4/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/5/000.en.md b/docs/content/introduction/changelog/5/5/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/5/000.en.md
rename to docs/content/introduction/changelog/5/5/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/5/000.pir.md b/docs/content/introduction/changelog/5/5/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/5/000.pir.md
rename to docs/content/introduction/changelog/5/5/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/5/001.en.md b/docs/content/introduction/changelog/5/5/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/5/001.en.md
rename to docs/content/introduction/changelog/5/5/001.en.md
diff --git a/exampleSite/content/introduction/changelog/5/5/001.pir.md b/docs/content/introduction/changelog/5/5/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/5/001.pir.md
rename to docs/content/introduction/changelog/5/5/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/5/002.en.md b/docs/content/introduction/changelog/5/5/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/5/002.en.md
rename to docs/content/introduction/changelog/5/5/002.en.md
diff --git a/exampleSite/content/introduction/changelog/5/5/002.pir.md b/docs/content/introduction/changelog/5/5/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/5/002.pir.md
rename to docs/content/introduction/changelog/5/5/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/5/003.en.md b/docs/content/introduction/changelog/5/5/003.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/5/003.en.md
rename to docs/content/introduction/changelog/5/5/003.en.md
diff --git a/exampleSite/content/introduction/changelog/5/5/003.pir.md b/docs/content/introduction/changelog/5/5/003.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/5/003.pir.md
rename to docs/content/introduction/changelog/5/5/003.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/5/_index.en.md b/docs/content/introduction/changelog/5/5/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/5/_index.en.md
rename to docs/content/introduction/changelog/5/5/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/5/_index.pir.md b/docs/content/introduction/changelog/5/5/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/5/_index.pir.md
rename to docs/content/introduction/changelog/5/5/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/6/000.en.md b/docs/content/introduction/changelog/5/6/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/6/000.en.md
rename to docs/content/introduction/changelog/5/6/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/6/000.pir.md b/docs/content/introduction/changelog/5/6/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/6/000.pir.md
rename to docs/content/introduction/changelog/5/6/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/6/001.en.md b/docs/content/introduction/changelog/5/6/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/6/001.en.md
rename to docs/content/introduction/changelog/5/6/001.en.md
diff --git a/exampleSite/content/introduction/changelog/5/6/001.pir.md b/docs/content/introduction/changelog/5/6/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/6/001.pir.md
rename to docs/content/introduction/changelog/5/6/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/6/002.en.md b/docs/content/introduction/changelog/5/6/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/6/002.en.md
rename to docs/content/introduction/changelog/5/6/002.en.md
diff --git a/exampleSite/content/introduction/changelog/5/6/002.pir.md b/docs/content/introduction/changelog/5/6/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/6/002.pir.md
rename to docs/content/introduction/changelog/5/6/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/6/003.en.md b/docs/content/introduction/changelog/5/6/003.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/6/003.en.md
rename to docs/content/introduction/changelog/5/6/003.en.md
diff --git a/exampleSite/content/introduction/changelog/5/6/003.pir.md b/docs/content/introduction/changelog/5/6/003.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/6/003.pir.md
rename to docs/content/introduction/changelog/5/6/003.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/6/004.en.md b/docs/content/introduction/changelog/5/6/004.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/6/004.en.md
rename to docs/content/introduction/changelog/5/6/004.en.md
diff --git a/exampleSite/content/introduction/changelog/5/6/004.pir.md b/docs/content/introduction/changelog/5/6/004.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/6/004.pir.md
rename to docs/content/introduction/changelog/5/6/004.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/6/005.en.md b/docs/content/introduction/changelog/5/6/005.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/6/005.en.md
rename to docs/content/introduction/changelog/5/6/005.en.md
diff --git a/exampleSite/content/introduction/changelog/5/6/005.pir.md b/docs/content/introduction/changelog/5/6/005.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/6/005.pir.md
rename to docs/content/introduction/changelog/5/6/005.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/6/006.en.md b/docs/content/introduction/changelog/5/6/006.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/6/006.en.md
rename to docs/content/introduction/changelog/5/6/006.en.md
diff --git a/exampleSite/content/introduction/changelog/5/6/006.pir.md b/docs/content/introduction/changelog/5/6/006.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/6/006.pir.md
rename to docs/content/introduction/changelog/5/6/006.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/6/_index.en.md b/docs/content/introduction/changelog/5/6/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/6/_index.en.md
rename to docs/content/introduction/changelog/5/6/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/6/_index.pir.md b/docs/content/introduction/changelog/5/6/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/6/_index.pir.md
rename to docs/content/introduction/changelog/5/6/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/7/000.en.md b/docs/content/introduction/changelog/5/7/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/7/000.en.md
rename to docs/content/introduction/changelog/5/7/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/7/000.pir.md b/docs/content/introduction/changelog/5/7/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/7/000.pir.md
rename to docs/content/introduction/changelog/5/7/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/7/_index.en.md b/docs/content/introduction/changelog/5/7/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/7/_index.en.md
rename to docs/content/introduction/changelog/5/7/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/7/_index.pir.md b/docs/content/introduction/changelog/5/7/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/7/_index.pir.md
rename to docs/content/introduction/changelog/5/7/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/8/000.en.md b/docs/content/introduction/changelog/5/8/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/8/000.en.md
rename to docs/content/introduction/changelog/5/8/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/8/000.pir.md b/docs/content/introduction/changelog/5/8/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/8/000.pir.md
rename to docs/content/introduction/changelog/5/8/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/8/001.en.md b/docs/content/introduction/changelog/5/8/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/8/001.en.md
rename to docs/content/introduction/changelog/5/8/001.en.md
diff --git a/exampleSite/content/introduction/changelog/5/8/001.pir.md b/docs/content/introduction/changelog/5/8/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/8/001.pir.md
rename to docs/content/introduction/changelog/5/8/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/8/_index.en.md b/docs/content/introduction/changelog/5/8/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/8/_index.en.md
rename to docs/content/introduction/changelog/5/8/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/8/_index.pir.md b/docs/content/introduction/changelog/5/8/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/8/_index.pir.md
rename to docs/content/introduction/changelog/5/8/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/9/000.en.md b/docs/content/introduction/changelog/5/9/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/9/000.en.md
rename to docs/content/introduction/changelog/5/9/000.en.md
diff --git a/exampleSite/content/introduction/changelog/5/9/000.pir.md b/docs/content/introduction/changelog/5/9/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/9/000.pir.md
rename to docs/content/introduction/changelog/5/9/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/9/001.en.md b/docs/content/introduction/changelog/5/9/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/9/001.en.md
rename to docs/content/introduction/changelog/5/9/001.en.md
diff --git a/exampleSite/content/introduction/changelog/5/9/001.pir.md b/docs/content/introduction/changelog/5/9/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/9/001.pir.md
rename to docs/content/introduction/changelog/5/9/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/9/002.en.md b/docs/content/introduction/changelog/5/9/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/9/002.en.md
rename to docs/content/introduction/changelog/5/9/002.en.md
diff --git a/exampleSite/content/introduction/changelog/5/9/002.pir.md b/docs/content/introduction/changelog/5/9/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/9/002.pir.md
rename to docs/content/introduction/changelog/5/9/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/9/003.en.md b/docs/content/introduction/changelog/5/9/003.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/9/003.en.md
rename to docs/content/introduction/changelog/5/9/003.en.md
diff --git a/exampleSite/content/introduction/changelog/5/9/003.pir.md b/docs/content/introduction/changelog/5/9/003.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/9/003.pir.md
rename to docs/content/introduction/changelog/5/9/003.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/9/004.en.md b/docs/content/introduction/changelog/5/9/004.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/9/004.en.md
rename to docs/content/introduction/changelog/5/9/004.en.md
diff --git a/exampleSite/content/introduction/changelog/5/9/004.pir.md b/docs/content/introduction/changelog/5/9/004.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/9/004.pir.md
rename to docs/content/introduction/changelog/5/9/004.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/9/_index.en.md b/docs/content/introduction/changelog/5/9/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/9/_index.en.md
rename to docs/content/introduction/changelog/5/9/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/9/_index.pir.md b/docs/content/introduction/changelog/5/9/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/9/_index.pir.md
rename to docs/content/introduction/changelog/5/9/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/5/_index.en.md b/docs/content/introduction/changelog/5/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/_index.en.md
rename to docs/content/introduction/changelog/5/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/5/_index.pir.md b/docs/content/introduction/changelog/5/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/5/_index.pir.md
rename to docs/content/introduction/changelog/5/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/6/0/000.en.md b/docs/content/introduction/changelog/6/0/000.en.md
similarity index 92%
rename from exampleSite/content/introduction/changelog/6/0/000.en.md
rename to docs/content/introduction/changelog/6/0/000.en.md
index 2155d551a1..816ddbaa6f 100644
--- a/exampleSite/content/introduction/changelog/6/0/000.en.md
+++ b/docs/content/introduction/changelog/6/0/000.en.md
@@ -12,7 +12,7 @@
### Fixes
-- [**bug**] frontmatter: move frontmatter config for exampleSite out of root [#843](https://github.com/McShelby/hugo-theme-relearn/issues/843)
+- [**bug**] frontmatter: move frontmatter config for docs out of root [#843](https://github.com/McShelby/hugo-theme-relearn/issues/843)
- [**bug**] images: color outline using primary color [#838](https://github.com/McShelby/hugo-theme-relearn/issues/838)
- [**bug**][**breaking**] variant: avoid Hugo permission errors on build [#831](https://github.com/McShelby/hugo-theme-relearn/issues/831)
- [**bug**] theme: unwanted paragraph break with AsciiDoc [#829](https://github.com/McShelby/hugo-theme-relearn/issues/829)
diff --git a/exampleSite/content/introduction/changelog/6/0/000.pir.md b/docs/content/introduction/changelog/6/0/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/0/000.pir.md
rename to docs/content/introduction/changelog/6/0/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/6/0/_index.en.md b/docs/content/introduction/changelog/6/0/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/0/_index.en.md
rename to docs/content/introduction/changelog/6/0/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/6/0/_index.pir.md b/docs/content/introduction/changelog/6/0/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/0/_index.pir.md
rename to docs/content/introduction/changelog/6/0/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/6/1/000.en.md b/docs/content/introduction/changelog/6/1/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/1/000.en.md
rename to docs/content/introduction/changelog/6/1/000.en.md
diff --git a/exampleSite/content/introduction/changelog/6/1/000.pir.md b/docs/content/introduction/changelog/6/1/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/1/000.pir.md
rename to docs/content/introduction/changelog/6/1/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/6/1/001.en.md b/docs/content/introduction/changelog/6/1/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/1/001.en.md
rename to docs/content/introduction/changelog/6/1/001.en.md
diff --git a/exampleSite/content/introduction/changelog/6/1/001.pir.md b/docs/content/introduction/changelog/6/1/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/1/001.pir.md
rename to docs/content/introduction/changelog/6/1/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/6/1/_index.en.md b/docs/content/introduction/changelog/6/1/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/1/_index.en.md
rename to docs/content/introduction/changelog/6/1/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/6/1/_index.pir.md b/docs/content/introduction/changelog/6/1/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/1/_index.pir.md
rename to docs/content/introduction/changelog/6/1/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/6/2/000.en.md b/docs/content/introduction/changelog/6/2/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/2/000.en.md
rename to docs/content/introduction/changelog/6/2/000.en.md
diff --git a/exampleSite/content/introduction/changelog/6/2/000.pir.md b/docs/content/introduction/changelog/6/2/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/2/000.pir.md
rename to docs/content/introduction/changelog/6/2/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/6/2/_index.en.md b/docs/content/introduction/changelog/6/2/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/2/_index.en.md
rename to docs/content/introduction/changelog/6/2/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/6/2/_index.pir.md b/docs/content/introduction/changelog/6/2/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/2/_index.pir.md
rename to docs/content/introduction/changelog/6/2/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/6/3/000.en.md b/docs/content/introduction/changelog/6/3/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/3/000.en.md
rename to docs/content/introduction/changelog/6/3/000.en.md
diff --git a/exampleSite/content/introduction/changelog/6/3/000.pir.md b/docs/content/introduction/changelog/6/3/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/3/000.pir.md
rename to docs/content/introduction/changelog/6/3/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/6/3/_index.en.md b/docs/content/introduction/changelog/6/3/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/3/_index.en.md
rename to docs/content/introduction/changelog/6/3/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/6/3/_index.pir.md b/docs/content/introduction/changelog/6/3/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/3/_index.pir.md
rename to docs/content/introduction/changelog/6/3/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/6/4/000.en.md b/docs/content/introduction/changelog/6/4/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/4/000.en.md
rename to docs/content/introduction/changelog/6/4/000.en.md
diff --git a/exampleSite/content/introduction/changelog/6/4/000.pir.md b/docs/content/introduction/changelog/6/4/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/4/000.pir.md
rename to docs/content/introduction/changelog/6/4/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/6/4/001.en.md b/docs/content/introduction/changelog/6/4/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/4/001.en.md
rename to docs/content/introduction/changelog/6/4/001.en.md
diff --git a/exampleSite/content/introduction/changelog/6/4/001.pir.md b/docs/content/introduction/changelog/6/4/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/4/001.pir.md
rename to docs/content/introduction/changelog/6/4/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/6/4/_index.en.md b/docs/content/introduction/changelog/6/4/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/4/_index.en.md
rename to docs/content/introduction/changelog/6/4/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/6/4/_index.pir.md b/docs/content/introduction/changelog/6/4/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/4/_index.pir.md
rename to docs/content/introduction/changelog/6/4/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/6/_index.en.md b/docs/content/introduction/changelog/6/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/_index.en.md
rename to docs/content/introduction/changelog/6/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/6/_index.pir.md b/docs/content/introduction/changelog/6/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/6/_index.pir.md
rename to docs/content/introduction/changelog/6/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/7/0/000.en.md b/docs/content/introduction/changelog/7/0/000.en.md
similarity index 91%
rename from exampleSite/content/introduction/changelog/7/0/000.en.md
rename to docs/content/introduction/changelog/7/0/000.en.md
index 7715743398..0895c7a732 100644
--- a/exampleSite/content/introduction/changelog/7/0/000.en.md
+++ b/docs/content/introduction/changelog/7/0/000.en.md
@@ -2,7 +2,7 @@
### Enhancements
-- [**feature**][**change**] logo: move Relearn logo to exampleSite [#924](https://github.com/McShelby/hugo-theme-relearn/issues/924)
+- [**feature**][**change**] logo: move Relearn logo to docs [#924](https://github.com/McShelby/hugo-theme-relearn/issues/924)
- [**feature**][**change**] math: adhere to Hugo's default config params [#923](https://github.com/McShelby/hugo-theme-relearn/issues/923)
- [**feature**][**change**] theme: replace font [#922](https://github.com/McShelby/hugo-theme-relearn/issues/922)
- [**feature**][**breaking**] theme: reduce build time [#685](https://github.com/McShelby/hugo-theme-relearn/issues/685)
diff --git a/exampleSite/content/introduction/changelog/7/0/000.pir.md b/docs/content/introduction/changelog/7/0/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/0/000.pir.md
rename to docs/content/introduction/changelog/7/0/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/7/0/001.en.md b/docs/content/introduction/changelog/7/0/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/0/001.en.md
rename to docs/content/introduction/changelog/7/0/001.en.md
diff --git a/exampleSite/content/introduction/changelog/7/0/001.pir.md b/docs/content/introduction/changelog/7/0/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/0/001.pir.md
rename to docs/content/introduction/changelog/7/0/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/7/0/_index.en.md b/docs/content/introduction/changelog/7/0/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/0/_index.en.md
rename to docs/content/introduction/changelog/7/0/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/7/0/_index.pir.md b/docs/content/introduction/changelog/7/0/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/0/_index.pir.md
rename to docs/content/introduction/changelog/7/0/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/7/1/000.en.md b/docs/content/introduction/changelog/7/1/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/1/000.en.md
rename to docs/content/introduction/changelog/7/1/000.en.md
diff --git a/exampleSite/content/introduction/changelog/7/1/000.pir.md b/docs/content/introduction/changelog/7/1/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/1/000.pir.md
rename to docs/content/introduction/changelog/7/1/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/7/1/001.en.md b/docs/content/introduction/changelog/7/1/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/1/001.en.md
rename to docs/content/introduction/changelog/7/1/001.en.md
diff --git a/exampleSite/content/introduction/changelog/7/1/001.pir.md b/docs/content/introduction/changelog/7/1/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/1/001.pir.md
rename to docs/content/introduction/changelog/7/1/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/7/1/_index.en.md b/docs/content/introduction/changelog/7/1/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/1/_index.en.md
rename to docs/content/introduction/changelog/7/1/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/7/1/_index.pir.md b/docs/content/introduction/changelog/7/1/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/1/_index.pir.md
rename to docs/content/introduction/changelog/7/1/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/7/2/000.en.md b/docs/content/introduction/changelog/7/2/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/2/000.en.md
rename to docs/content/introduction/changelog/7/2/000.en.md
diff --git a/exampleSite/content/introduction/changelog/7/2/000.pir.md b/docs/content/introduction/changelog/7/2/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/2/000.pir.md
rename to docs/content/introduction/changelog/7/2/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/7/2/001.en.md b/docs/content/introduction/changelog/7/2/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/2/001.en.md
rename to docs/content/introduction/changelog/7/2/001.en.md
diff --git a/exampleSite/content/introduction/changelog/7/2/001.pir.md b/docs/content/introduction/changelog/7/2/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/2/001.pir.md
rename to docs/content/introduction/changelog/7/2/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/7/2/_index.en.md b/docs/content/introduction/changelog/7/2/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/2/_index.en.md
rename to docs/content/introduction/changelog/7/2/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/7/2/_index.pir.md b/docs/content/introduction/changelog/7/2/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/2/_index.pir.md
rename to docs/content/introduction/changelog/7/2/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/7/3/000.en.md b/docs/content/introduction/changelog/7/3/000.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/3/000.en.md
rename to docs/content/introduction/changelog/7/3/000.en.md
diff --git a/exampleSite/content/introduction/changelog/7/3/000.pir.md b/docs/content/introduction/changelog/7/3/000.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/3/000.pir.md
rename to docs/content/introduction/changelog/7/3/000.pir.md
diff --git a/exampleSite/content/introduction/changelog/7/3/001.en.md b/docs/content/introduction/changelog/7/3/001.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/3/001.en.md
rename to docs/content/introduction/changelog/7/3/001.en.md
diff --git a/exampleSite/content/introduction/changelog/7/3/001.pir.md b/docs/content/introduction/changelog/7/3/001.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/3/001.pir.md
rename to docs/content/introduction/changelog/7/3/001.pir.md
diff --git a/exampleSite/content/introduction/changelog/7/3/002.en.md b/docs/content/introduction/changelog/7/3/002.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/3/002.en.md
rename to docs/content/introduction/changelog/7/3/002.en.md
diff --git a/exampleSite/content/introduction/changelog/7/3/002.pir.md b/docs/content/introduction/changelog/7/3/002.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/3/002.pir.md
rename to docs/content/introduction/changelog/7/3/002.pir.md
diff --git a/exampleSite/content/introduction/changelog/7/3/_index.en.md b/docs/content/introduction/changelog/7/3/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/3/_index.en.md
rename to docs/content/introduction/changelog/7/3/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/7/3/_index.pir.md b/docs/content/introduction/changelog/7/3/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/3/_index.pir.md
rename to docs/content/introduction/changelog/7/3/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/7/_index.en.md b/docs/content/introduction/changelog/7/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/_index.en.md
rename to docs/content/introduction/changelog/7/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/7/_index.pir.md b/docs/content/introduction/changelog/7/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/7/_index.pir.md
rename to docs/content/introduction/changelog/7/_index.pir.md
diff --git a/exampleSite/content/introduction/changelog/_index.en.md b/docs/content/introduction/changelog/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/_index.en.md
rename to docs/content/introduction/changelog/_index.en.md
diff --git a/exampleSite/content/introduction/changelog/_index.pir.md b/docs/content/introduction/changelog/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/changelog/_index.pir.md
rename to docs/content/introduction/changelog/_index.pir.md
diff --git a/exampleSite/content/introduction/quickstart/_index.en.md b/docs/content/introduction/quickstart/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/quickstart/_index.en.md
rename to docs/content/introduction/quickstart/_index.en.md
diff --git a/exampleSite/content/introduction/quickstart/_index.pir.md b/docs/content/introduction/quickstart/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/quickstart/_index.pir.md
rename to docs/content/introduction/quickstart/_index.pir.md
diff --git a/exampleSite/content/introduction/quickstart/magic.gif b/docs/content/introduction/quickstart/magic.gif
similarity index 100%
rename from exampleSite/content/introduction/quickstart/magic.gif
rename to docs/content/introduction/quickstart/magic.gif
diff --git a/exampleSite/content/introduction/releasenotes/1/0.en.md b/docs/content/introduction/releasenotes/1/0.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/1/0.en.md
rename to docs/content/introduction/releasenotes/1/0.en.md
diff --git a/exampleSite/content/introduction/releasenotes/1/0.pir.md b/docs/content/introduction/releasenotes/1/0.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/1/0.pir.md
rename to docs/content/introduction/releasenotes/1/0.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/1/1.en.md b/docs/content/introduction/releasenotes/1/1.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/1/1.en.md
rename to docs/content/introduction/releasenotes/1/1.en.md
diff --git a/exampleSite/content/introduction/releasenotes/1/1.pir.md b/docs/content/introduction/releasenotes/1/1.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/1/1.pir.md
rename to docs/content/introduction/releasenotes/1/1.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/1/2.en.md b/docs/content/introduction/releasenotes/1/2.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/1/2.en.md
rename to docs/content/introduction/releasenotes/1/2.en.md
diff --git a/exampleSite/content/introduction/releasenotes/1/2.pir.md b/docs/content/introduction/releasenotes/1/2.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/1/2.pir.md
rename to docs/content/introduction/releasenotes/1/2.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/1/_index.en.md b/docs/content/introduction/releasenotes/1/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/1/_index.en.md
rename to docs/content/introduction/releasenotes/1/_index.en.md
diff --git a/exampleSite/content/introduction/releasenotes/1/_index.pir.md b/docs/content/introduction/releasenotes/1/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/1/_index.pir.md
rename to docs/content/introduction/releasenotes/1/_index.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/2/0.en.md b/docs/content/introduction/releasenotes/2/0.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/2/0.en.md
rename to docs/content/introduction/releasenotes/2/0.en.md
diff --git a/exampleSite/content/introduction/releasenotes/2/0.pir.md b/docs/content/introduction/releasenotes/2/0.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/2/0.pir.md
rename to docs/content/introduction/releasenotes/2/0.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/2/1.en.md b/docs/content/introduction/releasenotes/2/1.en.md
similarity index 92%
rename from exampleSite/content/introduction/releasenotes/2/1.en.md
rename to docs/content/introduction/releasenotes/2/1.en.md
index 5a823f775c..5cd5d4b436 100644
--- a/exampleSite/content/introduction/releasenotes/2/1.en.md
+++ b/docs/content/introduction/releasenotes/2/1.en.md
@@ -14,7 +14,7 @@ weight = -1
### Change
-- {{% badge style="note" title=" " %}}Change{{% /badge %}} In case the site's structure contains additional *.md files not part of the site (eg files that are meant to be included by site pages - see `CHANGELOG.md` in the exampleSite), they will now be ignored by the search.
+- {{% badge style="note" title=" " %}}Change{{% /badge %}} In case the site's structure contains additional *.md files not part of the site (eg files that are meant to be included by site pages), they will now be ignored by the search.
### New
diff --git a/exampleSite/content/introduction/releasenotes/2/1.pir.md b/docs/content/introduction/releasenotes/2/1.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/2/1.pir.md
rename to docs/content/introduction/releasenotes/2/1.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/2/2.en.md b/docs/content/introduction/releasenotes/2/2.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/2/2.en.md
rename to docs/content/introduction/releasenotes/2/2.en.md
diff --git a/exampleSite/content/introduction/releasenotes/2/2.pir.md b/docs/content/introduction/releasenotes/2/2.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/2/2.pir.md
rename to docs/content/introduction/releasenotes/2/2.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/2/3.en.md b/docs/content/introduction/releasenotes/2/3.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/2/3.en.md
rename to docs/content/introduction/releasenotes/2/3.en.md
diff --git a/exampleSite/content/introduction/releasenotes/2/3.pir.md b/docs/content/introduction/releasenotes/2/3.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/2/3.pir.md
rename to docs/content/introduction/releasenotes/2/3.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/2/4.en.md b/docs/content/introduction/releasenotes/2/4.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/2/4.en.md
rename to docs/content/introduction/releasenotes/2/4.en.md
diff --git a/exampleSite/content/introduction/releasenotes/2/4.pir.md b/docs/content/introduction/releasenotes/2/4.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/2/4.pir.md
rename to docs/content/introduction/releasenotes/2/4.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/2/5.en.md b/docs/content/introduction/releasenotes/2/5.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/2/5.en.md
rename to docs/content/introduction/releasenotes/2/5.en.md
diff --git a/exampleSite/content/introduction/releasenotes/2/5.pir.md b/docs/content/introduction/releasenotes/2/5.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/2/5.pir.md
rename to docs/content/introduction/releasenotes/2/5.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/2/6.en.md b/docs/content/introduction/releasenotes/2/6.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/2/6.en.md
rename to docs/content/introduction/releasenotes/2/6.en.md
diff --git a/exampleSite/content/introduction/releasenotes/2/6.pir.md b/docs/content/introduction/releasenotes/2/6.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/2/6.pir.md
rename to docs/content/introduction/releasenotes/2/6.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/2/7.en.md b/docs/content/introduction/releasenotes/2/7.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/2/7.en.md
rename to docs/content/introduction/releasenotes/2/7.en.md
diff --git a/exampleSite/content/introduction/releasenotes/2/7.pir.md b/docs/content/introduction/releasenotes/2/7.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/2/7.pir.md
rename to docs/content/introduction/releasenotes/2/7.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/2/8.en.md b/docs/content/introduction/releasenotes/2/8.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/2/8.en.md
rename to docs/content/introduction/releasenotes/2/8.en.md
diff --git a/exampleSite/content/introduction/releasenotes/2/8.pir.md b/docs/content/introduction/releasenotes/2/8.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/2/8.pir.md
rename to docs/content/introduction/releasenotes/2/8.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/2/9.en.md b/docs/content/introduction/releasenotes/2/9.en.md
similarity index 96%
rename from exampleSite/content/introduction/releasenotes/2/9.en.md
rename to docs/content/introduction/releasenotes/2/9.en.md
index 167de8f260..9a6945ec74 100644
--- a/exampleSite/content/introduction/releasenotes/2/9.en.md
+++ b/docs/content/introduction/releasenotes/2/9.en.md
@@ -26,10 +26,10 @@ weight = -9
In the best case your usage of the old implementation is already standard compliant and you don't need to change anything. You'll notice this very easily once you've started `hugo server` after an upgrade and no errors are written to the console.
- You may see errors on the console after the update in the form:
+ You may see errors on the console after the update in the form of
````shell
- ERROR 2021/11/19 22:29:10 [en] REF_NOT_FOUND: Ref "configuration/reference/_index.md": "hugo-theme-relearn\exampleSite\content\_index.en.md:19:22": page not found
+ ERROR 2021/11/19 22:29:10 [en] REF_NOT_FOUND: Ref "configuration/reference/_index.md": "hugo-theme-relearn\docs\content\_index.en.md:19:22": page not found
````
In this case, you must apply one of two options:
diff --git a/exampleSite/content/introduction/releasenotes/2/9.pir.md b/docs/content/introduction/releasenotes/2/9.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/2/9.pir.md
rename to docs/content/introduction/releasenotes/2/9.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/2/_index.en.md b/docs/content/introduction/releasenotes/2/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/2/_index.en.md
rename to docs/content/introduction/releasenotes/2/_index.en.md
diff --git a/exampleSite/content/introduction/releasenotes/2/_index.pir.md b/docs/content/introduction/releasenotes/2/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/2/_index.pir.md
rename to docs/content/introduction/releasenotes/2/_index.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/3/0.en.md b/docs/content/introduction/releasenotes/3/0.en.md
similarity index 98%
rename from exampleSite/content/introduction/releasenotes/3/0.en.md
rename to docs/content/introduction/releasenotes/3/0.en.md
index f9a384c8e3..b69dd07af4 100644
--- a/exampleSite/content/introduction/releasenotes/3/0.en.md
+++ b/docs/content/introduction/releasenotes/3/0.en.md
@@ -10,7 +10,7 @@ weight = -0
### Breaking
-- {{% badge style="warning" title=" " %}}Breaking{{% /badge %}} We made changes to the menu footer. If you have your `menu-footer.html` [partial overridden](configuration/customization/partials), you may have to review the styling (eg. margins/paddings) in your partial. For a reference take a look into the `menu-footer.html` partial that is coming with the exampleSite.
+- {{% badge style="warning" title=" " %}}Breaking{{% /badge %}} We made changes to the menu footer. If you have your `menu-footer.html` [partial overridden](configuration/customization/partials), you may have to review the styling (eg. margins/paddings) in your partial. For a reference take a look into the `menu-footer.html` partial that is coming with the docs.
This change was made to allow your own menu footer to be placed right after the so called prefooter that comes with the theme (containing the language switch and _Clear history_ functionality).
diff --git a/exampleSite/content/introduction/releasenotes/3/0.pir.md b/docs/content/introduction/releasenotes/3/0.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/3/0.pir.md
rename to docs/content/introduction/releasenotes/3/0.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/3/1.en.md b/docs/content/introduction/releasenotes/3/1.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/3/1.en.md
rename to docs/content/introduction/releasenotes/3/1.en.md
diff --git a/exampleSite/content/introduction/releasenotes/3/1.pir.md b/docs/content/introduction/releasenotes/3/1.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/3/1.pir.md
rename to docs/content/introduction/releasenotes/3/1.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/3/2.en.md b/docs/content/introduction/releasenotes/3/2.en.md
similarity index 94%
rename from exampleSite/content/introduction/releasenotes/3/2.en.md
rename to docs/content/introduction/releasenotes/3/2.en.md
index bd99ee992d..4e5afcd6f3 100644
--- a/exampleSite/content/introduction/releasenotes/3/2.en.md
+++ b/docs/content/introduction/releasenotes/3/2.en.md
@@ -16,7 +16,7 @@ weight = -2
- {{% badge style="note" title=" " %}}Change{{% /badge %}} In this release the Mermaid JavaScript library will only be loaded on demand if the page contains a Mermaid shortcode or is using Markdown codefences. This changes the behavior of `disableMermaid` config option as follows: If a Mermaid shortcode or Markdown codefence is found, the option will be ignored and Mermaid will be loaded regardlessly.
- The option is still useful in case you are using scripting to set up your graph. In this case no shortcode or Markdown codefence is involved and the library is not loaded by default. In this case you can set `disableMermaid=false` in your front matter to force the library to be loaded. See the [theme variant generator](configuration/branding/generator) of the exampleSite for an example.
+ The option is still useful in case you are using scripting to set up your graph. In this case no shortcode or Markdown codefence is involved and the library is not loaded by default. In this case you can set `disableMermaid=false` in your front matter to force the library to be loaded. See the [theme variant generator](configuration/branding/generator) of the docs for an example.
### New
diff --git a/exampleSite/content/introduction/releasenotes/3/2.pir.md b/docs/content/introduction/releasenotes/3/2.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/3/2.pir.md
rename to docs/content/introduction/releasenotes/3/2.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/3/3.en.md b/docs/content/introduction/releasenotes/3/3.en.md
similarity index 90%
rename from exampleSite/content/introduction/releasenotes/3/3.en.md
rename to docs/content/introduction/releasenotes/3/3.en.md
index 985d83878c..d6e3914390 100644
--- a/exampleSite/content/introduction/releasenotes/3/3.en.md
+++ b/docs/content/introduction/releasenotes/3/3.en.md
@@ -10,6 +10,6 @@ weight = -3
### New
-- {{% badge style="info" icon="plus-circle" title=" " %}}New{{% /badge %}} Introduction of new CSS variables to set the font. The theme distinguishes between `--MAIN-font` for all content text and `--CODE-font` for inline or block code. There are additional overrides for all headings. See the [theme variant generator](configuration/branding/generator) of the exampleSite for all available variables.
+- {{% badge style="info" icon="plus-circle" title=" " %}}New{{% /badge %}} Introduction of new CSS variables to set the font. The theme distinguishes between `--MAIN-font` for all content text and `--CODE-font` for inline or block code. There are additional overrides for all headings. See the [theme variant generator](configuration/branding/generator) of the docs for all available variables.
- {{% badge style="info" icon="plus-circle" title=" " %}}New{{% /badge %}} The new shortcode `swagger` is available to include a UI for REST OpenAPI specifications. See the [documentation](shortcodes/openapi) for available features. This feature will not work with Internet Explorer 11.
diff --git a/exampleSite/content/introduction/releasenotes/3/3.pir.md b/docs/content/introduction/releasenotes/3/3.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/3/3.pir.md
rename to docs/content/introduction/releasenotes/3/3.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/3/4.en.md b/docs/content/introduction/releasenotes/3/4.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/3/4.en.md
rename to docs/content/introduction/releasenotes/3/4.en.md
diff --git a/exampleSite/content/introduction/releasenotes/3/4.pir.md b/docs/content/introduction/releasenotes/3/4.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/3/4.pir.md
rename to docs/content/introduction/releasenotes/3/4.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/3/_index.en.md b/docs/content/introduction/releasenotes/3/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/3/_index.en.md
rename to docs/content/introduction/releasenotes/3/_index.en.md
diff --git a/exampleSite/content/introduction/releasenotes/3/_index.pir.md b/docs/content/introduction/releasenotes/3/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/3/_index.pir.md
rename to docs/content/introduction/releasenotes/3/_index.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/4/0.en.md b/docs/content/introduction/releasenotes/4/0.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/4/0.en.md
rename to docs/content/introduction/releasenotes/4/0.en.md
diff --git a/exampleSite/content/introduction/releasenotes/4/0.pir.md b/docs/content/introduction/releasenotes/4/0.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/4/0.pir.md
rename to docs/content/introduction/releasenotes/4/0.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/4/1.en.md b/docs/content/introduction/releasenotes/4/1.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/4/1.en.md
rename to docs/content/introduction/releasenotes/4/1.en.md
diff --git a/exampleSite/content/introduction/releasenotes/4/1.pir.md b/docs/content/introduction/releasenotes/4/1.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/4/1.pir.md
rename to docs/content/introduction/releasenotes/4/1.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/4/2.en.md b/docs/content/introduction/releasenotes/4/2.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/4/2.en.md
rename to docs/content/introduction/releasenotes/4/2.en.md
diff --git a/exampleSite/content/introduction/releasenotes/4/2.pir.md b/docs/content/introduction/releasenotes/4/2.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/4/2.pir.md
rename to docs/content/introduction/releasenotes/4/2.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/4/_index.en.md b/docs/content/introduction/releasenotes/4/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/4/_index.en.md
rename to docs/content/introduction/releasenotes/4/_index.en.md
diff --git a/exampleSite/content/introduction/releasenotes/4/_index.pir.md b/docs/content/introduction/releasenotes/4/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/4/_index.pir.md
rename to docs/content/introduction/releasenotes/4/_index.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/0.en.md b/docs/content/introduction/releasenotes/5/0.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/0.en.md
rename to docs/content/introduction/releasenotes/5/0.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/0.pir.md b/docs/content/introduction/releasenotes/5/0.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/0.pir.md
rename to docs/content/introduction/releasenotes/5/0.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/1.en.md b/docs/content/introduction/releasenotes/5/1.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/1.en.md
rename to docs/content/introduction/releasenotes/5/1.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/1.pir.md b/docs/content/introduction/releasenotes/5/1.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/1.pir.md
rename to docs/content/introduction/releasenotes/5/1.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/10.en.md b/docs/content/introduction/releasenotes/5/10.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/10.en.md
rename to docs/content/introduction/releasenotes/5/10.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/10.pir.md b/docs/content/introduction/releasenotes/5/10.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/10.pir.md
rename to docs/content/introduction/releasenotes/5/10.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/11.en.md b/docs/content/introduction/releasenotes/5/11.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/11.en.md
rename to docs/content/introduction/releasenotes/5/11.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/11.pir.md b/docs/content/introduction/releasenotes/5/11.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/11.pir.md
rename to docs/content/introduction/releasenotes/5/11.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/12.en.md b/docs/content/introduction/releasenotes/5/12.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/12.en.md
rename to docs/content/introduction/releasenotes/5/12.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/12.pir.md b/docs/content/introduction/releasenotes/5/12.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/12.pir.md
rename to docs/content/introduction/releasenotes/5/12.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/13.en.md b/docs/content/introduction/releasenotes/5/13.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/13.en.md
rename to docs/content/introduction/releasenotes/5/13.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/13.pir.md b/docs/content/introduction/releasenotes/5/13.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/13.pir.md
rename to docs/content/introduction/releasenotes/5/13.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/14.en.md b/docs/content/introduction/releasenotes/5/14.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/14.en.md
rename to docs/content/introduction/releasenotes/5/14.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/14.pir.md b/docs/content/introduction/releasenotes/5/14.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/14.pir.md
rename to docs/content/introduction/releasenotes/5/14.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/15.en.md b/docs/content/introduction/releasenotes/5/15.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/15.en.md
rename to docs/content/introduction/releasenotes/5/15.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/15.pir.md b/docs/content/introduction/releasenotes/5/15.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/15.pir.md
rename to docs/content/introduction/releasenotes/5/15.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/16.en.md b/docs/content/introduction/releasenotes/5/16.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/16.en.md
rename to docs/content/introduction/releasenotes/5/16.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/16.pir.md b/docs/content/introduction/releasenotes/5/16.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/16.pir.md
rename to docs/content/introduction/releasenotes/5/16.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/17.en.md b/docs/content/introduction/releasenotes/5/17.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/17.en.md
rename to docs/content/introduction/releasenotes/5/17.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/17.pir.md b/docs/content/introduction/releasenotes/5/17.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/17.pir.md
rename to docs/content/introduction/releasenotes/5/17.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/18.en.md b/docs/content/introduction/releasenotes/5/18.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/18.en.md
rename to docs/content/introduction/releasenotes/5/18.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/18.pir.md b/docs/content/introduction/releasenotes/5/18.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/18.pir.md
rename to docs/content/introduction/releasenotes/5/18.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/19.en.md b/docs/content/introduction/releasenotes/5/19.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/19.en.md
rename to docs/content/introduction/releasenotes/5/19.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/19.pir.md b/docs/content/introduction/releasenotes/5/19.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/19.pir.md
rename to docs/content/introduction/releasenotes/5/19.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/2.en.md b/docs/content/introduction/releasenotes/5/2.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/2.en.md
rename to docs/content/introduction/releasenotes/5/2.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/2.pir.md b/docs/content/introduction/releasenotes/5/2.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/2.pir.md
rename to docs/content/introduction/releasenotes/5/2.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/20.en.md b/docs/content/introduction/releasenotes/5/20.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/20.en.md
rename to docs/content/introduction/releasenotes/5/20.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/20.pir.md b/docs/content/introduction/releasenotes/5/20.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/20.pir.md
rename to docs/content/introduction/releasenotes/5/20.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/21.en.md b/docs/content/introduction/releasenotes/5/21.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/21.en.md
rename to docs/content/introduction/releasenotes/5/21.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/21.pir.md b/docs/content/introduction/releasenotes/5/21.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/21.pir.md
rename to docs/content/introduction/releasenotes/5/21.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/22.en.md b/docs/content/introduction/releasenotes/5/22.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/22.en.md
rename to docs/content/introduction/releasenotes/5/22.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/22.pir.md b/docs/content/introduction/releasenotes/5/22.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/22.pir.md
rename to docs/content/introduction/releasenotes/5/22.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/23.en.md b/docs/content/introduction/releasenotes/5/23.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/23.en.md
rename to docs/content/introduction/releasenotes/5/23.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/23.pir.md b/docs/content/introduction/releasenotes/5/23.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/23.pir.md
rename to docs/content/introduction/releasenotes/5/23.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/24.en.md b/docs/content/introduction/releasenotes/5/24.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/24.en.md
rename to docs/content/introduction/releasenotes/5/24.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/24.pir.md b/docs/content/introduction/releasenotes/5/24.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/24.pir.md
rename to docs/content/introduction/releasenotes/5/24.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/25.en.md b/docs/content/introduction/releasenotes/5/25.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/25.en.md
rename to docs/content/introduction/releasenotes/5/25.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/25.pir.md b/docs/content/introduction/releasenotes/5/25.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/25.pir.md
rename to docs/content/introduction/releasenotes/5/25.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/26.en.md b/docs/content/introduction/releasenotes/5/26.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/26.en.md
rename to docs/content/introduction/releasenotes/5/26.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/26.pir.md b/docs/content/introduction/releasenotes/5/26.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/26.pir.md
rename to docs/content/introduction/releasenotes/5/26.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/27.en.md b/docs/content/introduction/releasenotes/5/27.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/27.en.md
rename to docs/content/introduction/releasenotes/5/27.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/27.pir.md b/docs/content/introduction/releasenotes/5/27.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/27.pir.md
rename to docs/content/introduction/releasenotes/5/27.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/3.en.md b/docs/content/introduction/releasenotes/5/3.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/3.en.md
rename to docs/content/introduction/releasenotes/5/3.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/3.pir.md b/docs/content/introduction/releasenotes/5/3.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/3.pir.md
rename to docs/content/introduction/releasenotes/5/3.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/4.en.md b/docs/content/introduction/releasenotes/5/4.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/4.en.md
rename to docs/content/introduction/releasenotes/5/4.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/4.pir.md b/docs/content/introduction/releasenotes/5/4.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/4.pir.md
rename to docs/content/introduction/releasenotes/5/4.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/5.en.md b/docs/content/introduction/releasenotes/5/5.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/5.en.md
rename to docs/content/introduction/releasenotes/5/5.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/5.pir.md b/docs/content/introduction/releasenotes/5/5.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/5.pir.md
rename to docs/content/introduction/releasenotes/5/5.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/6.en.md b/docs/content/introduction/releasenotes/5/6.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/6.en.md
rename to docs/content/introduction/releasenotes/5/6.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/6.pir.md b/docs/content/introduction/releasenotes/5/6.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/6.pir.md
rename to docs/content/introduction/releasenotes/5/6.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/7.en.md b/docs/content/introduction/releasenotes/5/7.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/7.en.md
rename to docs/content/introduction/releasenotes/5/7.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/7.pir.md b/docs/content/introduction/releasenotes/5/7.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/7.pir.md
rename to docs/content/introduction/releasenotes/5/7.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/8.en.md b/docs/content/introduction/releasenotes/5/8.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/8.en.md
rename to docs/content/introduction/releasenotes/5/8.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/8.pir.md b/docs/content/introduction/releasenotes/5/8.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/8.pir.md
rename to docs/content/introduction/releasenotes/5/8.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/9.en.md b/docs/content/introduction/releasenotes/5/9.en.md
similarity index 83%
rename from exampleSite/content/introduction/releasenotes/5/9.en.md
rename to docs/content/introduction/releasenotes/5/9.en.md
index 2dc7a3b23f..145c03f5e3 100644
--- a/exampleSite/content/introduction/releasenotes/5/9.en.md
+++ b/docs/content/introduction/releasenotes/5/9.en.md
@@ -16,7 +16,7 @@ weight = -9
To [get rid](configuration/sidebar/menus#displaying-pages-exclusively-in-a-hugo-menu) of this undesired behavior you have two choices:
- 1. Make the page file a [headless branch bundle](https://gohugo.io/content-management/page-bundles/#headless-bundle) (contained in its own subdirectory and called `_index.md`) and add the following front matter configuration to the file (see exampleSite's `content/showcase/_index.en.md`). This causes its content to **not** be ontained in the sitemap.
+ 1. Make the page file a [headless branch bundle](https://gohugo.io/content-management/page-bundles/#headless-bundle) (contained in its own subdirectory and called `_index.md`) and add the following front matter configuration to the file (see docs `content/showcase/_index.en.md`). This causes its content to **not** be ontained in the sitemap.
{{< multiconfig fm=true >}}
title = 'Showcase'
@@ -26,7 +26,7 @@ weight = -9
publishResources = true
{{< /multiconfig >}}
- 2. Store the page file for below a parent headless branch bundle and add the following front matter to he **parent** (see exampleSite's `content/more/_index.en.md`). **Don't give this page a `title`** as this will cause it to be shown in the breadcrumbs - a thing you most likely don't want.
+ 2. Store the page file for below a parent headless branch bundle and add the following front matter to he **parent** (see docs `content/more/_index.en.md`). **Don't give this page a `title`** as this will cause it to be shown in the breadcrumbs - a thing you most likely don't want.
{{< multiconfig fm=true >}}
[_build]
@@ -35,7 +35,7 @@ weight = -9
publishResources = false
{{< /multiconfig >}}
- In this case, the file itself can be a branch bundle, leaf bundle or simple page (see exampleSite's `content/more/credits.en.md`). This causes its content to be contained in the sitemap.
+ In this case, the file itself can be a branch bundle, leaf bundle or simple page (see docs `content/more/credits.en.md`). This causes its content to be contained in the sitemap.
{{< multiconfig fm=true >}}
title = 'Credits'
diff --git a/exampleSite/content/introduction/releasenotes/5/9.pir.md b/docs/content/introduction/releasenotes/5/9.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/9.pir.md
rename to docs/content/introduction/releasenotes/5/9.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/5/_index.en.md b/docs/content/introduction/releasenotes/5/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/_index.en.md
rename to docs/content/introduction/releasenotes/5/_index.en.md
diff --git a/exampleSite/content/introduction/releasenotes/5/_index.pir.md b/docs/content/introduction/releasenotes/5/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/5/_index.pir.md
rename to docs/content/introduction/releasenotes/5/_index.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/6/0.en.md b/docs/content/introduction/releasenotes/6/0.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/6/0.en.md
rename to docs/content/introduction/releasenotes/6/0.en.md
diff --git a/exampleSite/content/introduction/releasenotes/6/0.pir.md b/docs/content/introduction/releasenotes/6/0.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/6/0.pir.md
rename to docs/content/introduction/releasenotes/6/0.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/6/1.en.md b/docs/content/introduction/releasenotes/6/1.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/6/1.en.md
rename to docs/content/introduction/releasenotes/6/1.en.md
diff --git a/exampleSite/content/introduction/releasenotes/6/1.pir.md b/docs/content/introduction/releasenotes/6/1.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/6/1.pir.md
rename to docs/content/introduction/releasenotes/6/1.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/6/2.en.md b/docs/content/introduction/releasenotes/6/2.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/6/2.en.md
rename to docs/content/introduction/releasenotes/6/2.en.md
diff --git a/exampleSite/content/introduction/releasenotes/6/2.pir.md b/docs/content/introduction/releasenotes/6/2.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/6/2.pir.md
rename to docs/content/introduction/releasenotes/6/2.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/6/3.en.md b/docs/content/introduction/releasenotes/6/3.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/6/3.en.md
rename to docs/content/introduction/releasenotes/6/3.en.md
diff --git a/exampleSite/content/introduction/releasenotes/6/3.pir.md b/docs/content/introduction/releasenotes/6/3.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/6/3.pir.md
rename to docs/content/introduction/releasenotes/6/3.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/6/4.en.md b/docs/content/introduction/releasenotes/6/4.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/6/4.en.md
rename to docs/content/introduction/releasenotes/6/4.en.md
diff --git a/exampleSite/content/introduction/releasenotes/6/4.pir.md b/docs/content/introduction/releasenotes/6/4.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/6/4.pir.md
rename to docs/content/introduction/releasenotes/6/4.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/6/_index.en.md b/docs/content/introduction/releasenotes/6/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/6/_index.en.md
rename to docs/content/introduction/releasenotes/6/_index.en.md
diff --git a/exampleSite/content/introduction/releasenotes/6/_index.pir.md b/docs/content/introduction/releasenotes/6/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/6/_index.pir.md
rename to docs/content/introduction/releasenotes/6/_index.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/7/0.en.md b/docs/content/introduction/releasenotes/7/0.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/7/0.en.md
rename to docs/content/introduction/releasenotes/7/0.en.md
diff --git a/exampleSite/content/introduction/releasenotes/7/0.pir.md b/docs/content/introduction/releasenotes/7/0.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/7/0.pir.md
rename to docs/content/introduction/releasenotes/7/0.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/7/1.en.md b/docs/content/introduction/releasenotes/7/1.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/7/1.en.md
rename to docs/content/introduction/releasenotes/7/1.en.md
diff --git a/exampleSite/content/introduction/releasenotes/7/1.pir.md b/docs/content/introduction/releasenotes/7/1.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/7/1.pir.md
rename to docs/content/introduction/releasenotes/7/1.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/7/2.en.md b/docs/content/introduction/releasenotes/7/2.en.md
similarity index 94%
rename from exampleSite/content/introduction/releasenotes/7/2.en.md
rename to docs/content/introduction/releasenotes/7/2.en.md
index e9912891ad..37c6f59e6c 100644
--- a/exampleSite/content/introduction/releasenotes/7/2.en.md
+++ b/docs/content/introduction/releasenotes/7/2.en.md
@@ -18,7 +18,7 @@ weight = -2
Fixing this resulted in major changes how stylesheets are bundled during built and ultimately leads to different stylesheets been loaded in the browser. If you haven't done any undocumented stuff with the stylesheets, this change should not have any negative effects to your site.
- Anyways, please note that now the [variant generator](configuration/branding/generator) is not included in the theme release anymore but is only available in the exampleSite docs. As a sideeffect, less JavaScript will be loaded on your site.
+ Anyways, please note that now the [variant generator](configuration/branding/generator) is not included in the theme release anymore but is only available in the docs. As a sideeffect, less JavaScript will be loaded on your site.
### New
diff --git a/exampleSite/content/introduction/releasenotes/7/2.pir.md b/docs/content/introduction/releasenotes/7/2.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/7/2.pir.md
rename to docs/content/introduction/releasenotes/7/2.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/7/3.en.md b/docs/content/introduction/releasenotes/7/3.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/7/3.en.md
rename to docs/content/introduction/releasenotes/7/3.en.md
diff --git a/exampleSite/content/introduction/releasenotes/7/3.pir.md b/docs/content/introduction/releasenotes/7/3.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/7/3.pir.md
rename to docs/content/introduction/releasenotes/7/3.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/7/4.en.md b/docs/content/introduction/releasenotes/7/4.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/7/4.en.md
rename to docs/content/introduction/releasenotes/7/4.en.md
diff --git a/exampleSite/content/introduction/releasenotes/7/_index.en.md b/docs/content/introduction/releasenotes/7/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/7/_index.en.md
rename to docs/content/introduction/releasenotes/7/_index.en.md
diff --git a/exampleSite/content/introduction/releasenotes/7/_index.pir.md b/docs/content/introduction/releasenotes/7/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/7/_index.pir.md
rename to docs/content/introduction/releasenotes/7/_index.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/_index.en.md b/docs/content/introduction/releasenotes/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/_index.en.md
rename to docs/content/introduction/releasenotes/_index.en.md
diff --git a/exampleSite/content/introduction/releasenotes/_index.pir.md b/docs/content/introduction/releasenotes/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/_index.pir.md
rename to docs/content/introduction/releasenotes/_index.pir.md
diff --git a/exampleSite/content/introduction/releasenotes/legend.en.md b/docs/content/introduction/releasenotes/legend.en.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/legend.en.md
rename to docs/content/introduction/releasenotes/legend.en.md
diff --git a/exampleSite/content/introduction/releasenotes/legend.pir.md b/docs/content/introduction/releasenotes/legend.pir.md
similarity index 100%
rename from exampleSite/content/introduction/releasenotes/legend.pir.md
rename to docs/content/introduction/releasenotes/legend.pir.md
diff --git a/exampleSite/content/introduction/tools/_index.en.md b/docs/content/introduction/tools/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/tools/_index.en.md
rename to docs/content/introduction/tools/_index.en.md
diff --git a/exampleSite/content/introduction/tools/_index.pir.md b/docs/content/introduction/tools/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/tools/_index.pir.md
rename to docs/content/introduction/tools/_index.pir.md
diff --git a/exampleSite/content/introduction/upgrade/_index.en.md b/docs/content/introduction/upgrade/_index.en.md
similarity index 100%
rename from exampleSite/content/introduction/upgrade/_index.en.md
rename to docs/content/introduction/upgrade/_index.en.md
diff --git a/exampleSite/content/introduction/upgrade/_index.pir.md b/docs/content/introduction/upgrade/_index.pir.md
similarity index 100%
rename from exampleSite/content/introduction/upgrade/_index.pir.md
rename to docs/content/introduction/upgrade/_index.pir.md
diff --git a/exampleSite/content/more/_index.en.md b/docs/content/more/_index.en.md
similarity index 100%
rename from exampleSite/content/more/_index.en.md
rename to docs/content/more/_index.en.md
diff --git a/exampleSite/content/more/_index.pir.md b/docs/content/more/_index.pir.md
similarity index 100%
rename from exampleSite/content/more/_index.pir.md
rename to docs/content/more/_index.pir.md
diff --git a/exampleSite/content/more/credits/_index.en.md b/docs/content/more/credits/_index.en.md
similarity index 100%
rename from exampleSite/content/more/credits/_index.en.md
rename to docs/content/more/credits/_index.en.md
diff --git a/exampleSite/content/more/credits/_index.pir.md b/docs/content/more/credits/_index.pir.md
similarity index 100%
rename from exampleSite/content/more/credits/_index.pir.md
rename to docs/content/more/credits/_index.pir.md
diff --git a/exampleSite/content/options/_index.en.md b/docs/content/options/_index.en.md
similarity index 100%
rename from exampleSite/content/options/_index.en.md
rename to docs/content/options/_index.en.md
diff --git a/exampleSite/content/options/_index.pir.md b/docs/content/options/_index.pir.md
similarity index 100%
rename from exampleSite/content/options/_index.pir.md
rename to docs/content/options/_index.pir.md
diff --git a/exampleSite/content/shortcodes/_index.en.md b/docs/content/shortcodes/_index.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/_index.en.md
rename to docs/content/shortcodes/_index.en.md
diff --git a/exampleSite/content/shortcodes/_index.pir.md b/docs/content/shortcodes/_index.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/_index.pir.md
rename to docs/content/shortcodes/_index.pir.md
diff --git a/exampleSite/content/shortcodes/attachments/index.en.files/BachGavotteShort.mp3 b/docs/content/shortcodes/attachments/index.en.files/BachGavotteShort.mp3
similarity index 100%
rename from exampleSite/content/shortcodes/attachments/index.en.files/BachGavotteShort.mp3
rename to docs/content/shortcodes/attachments/index.en.files/BachGavotteShort.mp3
diff --git a/exampleSite/content/shortcodes/attachments/index.en.files/Carroll_AliceAuPaysDesMerveilles.pdf b/docs/content/shortcodes/attachments/index.en.files/Carroll_AliceAuPaysDesMerveilles.pdf
similarity index 100%
rename from exampleSite/content/shortcodes/attachments/index.en.files/Carroll_AliceAuPaysDesMerveilles.pdf
rename to docs/content/shortcodes/attachments/index.en.files/Carroll_AliceAuPaysDesMerveilles.pdf
diff --git a/exampleSite/content/shortcodes/attachments/index.en.files/adivorciarsetoca00cape.pdf b/docs/content/shortcodes/attachments/index.en.files/adivorciarsetoca00cape.pdf
similarity index 100%
rename from exampleSite/content/shortcodes/attachments/index.en.files/adivorciarsetoca00cape.pdf
rename to docs/content/shortcodes/attachments/index.en.files/adivorciarsetoca00cape.pdf
diff --git a/exampleSite/content/shortcodes/attachments/index.en.files/hugo.png b/docs/content/shortcodes/attachments/index.en.files/hugo.png
similarity index 100%
rename from exampleSite/content/shortcodes/attachments/index.en.files/hugo.png
rename to docs/content/shortcodes/attachments/index.en.files/hugo.png
diff --git a/exampleSite/content/shortcodes/attachments/index.en.files/hugo.txt b/docs/content/shortcodes/attachments/index.en.files/hugo.txt
similarity index 100%
rename from exampleSite/content/shortcodes/attachments/index.en.files/hugo.txt
rename to docs/content/shortcodes/attachments/index.en.files/hugo.txt
diff --git a/exampleSite/content/shortcodes/attachments/index.en.files/movieselectricsheep-flock-244-32500-2.mp4 b/docs/content/shortcodes/attachments/index.en.files/movieselectricsheep-flock-244-32500-2.mp4
similarity index 100%
rename from exampleSite/content/shortcodes/attachments/index.en.files/movieselectricsheep-flock-244-32500-2.mp4
rename to docs/content/shortcodes/attachments/index.en.files/movieselectricsheep-flock-244-32500-2.mp4
diff --git a/exampleSite/content/shortcodes/attachments/index.en.md b/docs/content/shortcodes/attachments/index.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/attachments/index.en.md
rename to docs/content/shortcodes/attachments/index.en.md
diff --git a/exampleSite/content/shortcodes/attachments/index.pir.files/NoTreasure.txt b/docs/content/shortcodes/attachments/index.pir.files/NoTreasure.txt
similarity index 100%
rename from exampleSite/content/shortcodes/attachments/index.pir.files/NoTreasure.txt
rename to docs/content/shortcodes/attachments/index.pir.files/NoTreasure.txt
diff --git a/exampleSite/content/shortcodes/attachments/index.pir.md b/docs/content/shortcodes/attachments/index.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/attachments/index.pir.md
rename to docs/content/shortcodes/attachments/index.pir.md
diff --git a/exampleSite/content/shortcodes/badge.en.md b/docs/content/shortcodes/badge.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/badge.en.md
rename to docs/content/shortcodes/badge.en.md
diff --git a/exampleSite/content/shortcodes/badge.pir.md b/docs/content/shortcodes/badge.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/badge.pir.md
rename to docs/content/shortcodes/badge.pir.md
diff --git a/exampleSite/content/shortcodes/button.en.md b/docs/content/shortcodes/button.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/button.en.md
rename to docs/content/shortcodes/button.en.md
diff --git a/exampleSite/content/shortcodes/button.pir.md b/docs/content/shortcodes/button.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/button.pir.md
rename to docs/content/shortcodes/button.pir.md
diff --git a/exampleSite/content/shortcodes/children/_index.en.md b/docs/content/shortcodes/children/_index.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/_index.en.md
rename to docs/content/shortcodes/children/_index.en.md
diff --git a/exampleSite/content/shortcodes/children/_index.pir.md b/docs/content/shortcodes/children/_index.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/_index.pir.md
rename to docs/content/shortcodes/children/_index.pir.md
diff --git a/exampleSite/content/shortcodes/children/children-1/_index.en.md b/docs/content/shortcodes/children/children-1/_index.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-1/_index.en.md
rename to docs/content/shortcodes/children/children-1/_index.en.md
diff --git a/exampleSite/content/shortcodes/children/children-1/_index.pir.md b/docs/content/shortcodes/children/children-1/_index.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-1/_index.pir.md
rename to docs/content/shortcodes/children/children-1/_index.pir.md
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/_index.en.md b/docs/content/shortcodes/children/children-1/children-1-1/_index.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-1/children-1-1/_index.en.md
rename to docs/content/shortcodes/children/children-1/children-1-1/_index.en.md
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/_index.pir.md b/docs/content/shortcodes/children/children-1/children-1-1/_index.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-1/children-1-1/_index.pir.md
rename to docs/content/shortcodes/children/children-1/children-1-1/_index.pir.md
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.en.md b/docs/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.en.md
rename to docs/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.en.md
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.pir.md b/docs/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.pir.md
rename to docs/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.pir.md
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.en.md b/docs/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.en.md
rename to docs/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.en.md
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.pir.md b/docs/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.pir.md
rename to docs/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.pir.md
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/_index.en.md b/docs/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
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/_index.en.md
rename to docs/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
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/_index.pir.md b/docs/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/_index.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/_index.pir.md
rename to docs/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/_index.pir.md
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/_index.en.md b/docs/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/_index.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/_index.en.md
rename to docs/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/_index.en.md
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/_index.pir.md b/docs/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/_index.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/_index.pir.md
rename to docs/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/children-1-1-1-1-1-1/_index.pir.md
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-2/_index.en.md b/docs/content/shortcodes/children/children-1/children-1-1/children-1-1-2/_index.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-2/_index.en.md
rename to docs/content/shortcodes/children/children-1/children-1-1/children-1-1-2/_index.en.md
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-2/_index.pir.md b/docs/content/shortcodes/children/children-1/children-1-1/children-1-1-2/_index.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-2/_index.pir.md
rename to docs/content/shortcodes/children/children-1/children-1-1/children-1-1-2/_index.pir.md
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/_index.en.md b/docs/content/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/_index.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/_index.en.md
rename to docs/content/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/_index.en.md
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/_index.pir.md b/docs/content/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/_index.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/_index.pir.md
rename to docs/content/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-1/_index.pir.md
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/_index.en.md b/docs/content/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/_index.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/_index.en.md
rename to docs/content/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/_index.en.md
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/_index.pir.md b/docs/content/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/_index.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/_index.pir.md
rename to docs/content/shortcodes/children/children-1/children-1-1/children-1-1-2/children-1-1-2-2/_index.pir.md
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-3/_index.en.md b/docs/content/shortcodes/children/children-1/children-1-1/children-1-1-3/_index.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-3/_index.en.md
rename to docs/content/shortcodes/children/children-1/children-1-1/children-1-1-3/_index.en.md
diff --git a/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-3/_index.pir.md b/docs/content/shortcodes/children/children-1/children-1-1/children-1-1-3/_index.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-3/_index.pir.md
rename to docs/content/shortcodes/children/children-1/children-1-1/children-1-1-3/_index.pir.md
diff --git a/exampleSite/content/shortcodes/children/children-2/_index.en.md b/docs/content/shortcodes/children/children-2/_index.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-2/_index.en.md
rename to docs/content/shortcodes/children/children-2/_index.en.md
diff --git a/exampleSite/content/shortcodes/children/children-2/_index.pir.md b/docs/content/shortcodes/children/children-2/_index.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-2/_index.pir.md
rename to docs/content/shortcodes/children/children-2/_index.pir.md
diff --git a/exampleSite/content/shortcodes/children/children-3/_index.en.md b/docs/content/shortcodes/children/children-3/_index.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-3/_index.en.md
rename to docs/content/shortcodes/children/children-3/_index.en.md
diff --git a/exampleSite/content/shortcodes/children/children-3/_index.pir.md b/docs/content/shortcodes/children/children-3/_index.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-3/_index.pir.md
rename to docs/content/shortcodes/children/children-3/_index.pir.md
diff --git a/exampleSite/content/shortcodes/children/children-3/test3.en.md b/docs/content/shortcodes/children/children-3/test3.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-3/test3.en.md
rename to docs/content/shortcodes/children/children-3/test3.en.md
diff --git a/exampleSite/content/shortcodes/children/children-3/test3.pir.md b/docs/content/shortcodes/children/children-3/test3.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-3/test3.pir.md
rename to docs/content/shortcodes/children/children-3/test3.pir.md
diff --git a/exampleSite/content/shortcodes/children/children-4/_index.en.md b/docs/content/shortcodes/children/children-4/_index.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-4/_index.en.md
rename to docs/content/shortcodes/children/children-4/_index.en.md
diff --git a/exampleSite/content/shortcodes/children/children-4/_index.pir.md b/docs/content/shortcodes/children/children-4/_index.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/children-4/_index.pir.md
rename to docs/content/shortcodes/children/children-4/_index.pir.md
diff --git a/exampleSite/content/shortcodes/children/test.en.md b/docs/content/shortcodes/children/test.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/test.en.md
rename to docs/content/shortcodes/children/test.en.md
diff --git a/exampleSite/content/shortcodes/children/test.pir.md b/docs/content/shortcodes/children/test.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/children/test.pir.md
rename to docs/content/shortcodes/children/test.pir.md
diff --git a/exampleSite/content/shortcodes/expand.en.md b/docs/content/shortcodes/expand.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/expand.en.md
rename to docs/content/shortcodes/expand.en.md
diff --git a/exampleSite/content/shortcodes/expand.pir.md b/docs/content/shortcodes/expand.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/expand.pir.md
rename to docs/content/shortcodes/expand.pir.md
diff --git a/exampleSite/content/shortcodes/highlight.en.md b/docs/content/shortcodes/highlight.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/highlight.en.md
rename to docs/content/shortcodes/highlight.en.md
diff --git a/exampleSite/content/shortcodes/highlight.pir.md b/docs/content/shortcodes/highlight.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/highlight.pir.md
rename to docs/content/shortcodes/highlight.pir.md
diff --git a/exampleSite/content/shortcodes/icon.en.md b/docs/content/shortcodes/icon.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/icon.en.md
rename to docs/content/shortcodes/icon.en.md
diff --git a/exampleSite/content/shortcodes/icon.pir.md b/docs/content/shortcodes/icon.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/icon.pir.md
rename to docs/content/shortcodes/icon.pir.md
diff --git a/exampleSite/content/shortcodes/include/INCLUDE_ME.md b/docs/content/shortcodes/include/INCLUDE_ME.md
similarity index 100%
rename from exampleSite/content/shortcodes/include/INCLUDE_ME.md
rename to docs/content/shortcodes/include/INCLUDE_ME.md
diff --git a/exampleSite/content/shortcodes/include/index.en.md b/docs/content/shortcodes/include/index.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/include/index.en.md
rename to docs/content/shortcodes/include/index.en.md
diff --git a/exampleSite/content/shortcodes/include/index.pir.md b/docs/content/shortcodes/include/index.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/include/index.pir.md
rename to docs/content/shortcodes/include/index.pir.md
diff --git a/exampleSite/content/shortcodes/math.en.md b/docs/content/shortcodes/math.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/math.en.md
rename to docs/content/shortcodes/math.en.md
diff --git a/exampleSite/content/shortcodes/math.pir.md b/docs/content/shortcodes/math.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/math.pir.md
rename to docs/content/shortcodes/math.pir.md
diff --git a/exampleSite/content/shortcodes/mermaid.en.md b/docs/content/shortcodes/mermaid.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/mermaid.en.md
rename to docs/content/shortcodes/mermaid.en.md
diff --git a/exampleSite/content/shortcodes/mermaid.pir.md b/docs/content/shortcodes/mermaid.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/mermaid.pir.md
rename to docs/content/shortcodes/mermaid.pir.md
diff --git a/exampleSite/content/shortcodes/notice.en.md b/docs/content/shortcodes/notice.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/notice.en.md
rename to docs/content/shortcodes/notice.en.md
diff --git a/exampleSite/content/shortcodes/notice.pir.md b/docs/content/shortcodes/notice.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/notice.pir.md
rename to docs/content/shortcodes/notice.pir.md
diff --git a/exampleSite/content/shortcodes/openapi/_index.en.md b/docs/content/shortcodes/openapi/_index.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/openapi/_index.en.md
rename to docs/content/shortcodes/openapi/_index.en.md
diff --git a/exampleSite/content/shortcodes/openapi/_index.pir.md b/docs/content/shortcodes/openapi/_index.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/openapi/_index.pir.md
rename to docs/content/shortcodes/openapi/_index.pir.md
diff --git a/exampleSite/content/shortcodes/openapi/petstore.json b/docs/content/shortcodes/openapi/petstore.json
similarity index 100%
rename from exampleSite/content/shortcodes/openapi/petstore.json
rename to docs/content/shortcodes/openapi/petstore.json
diff --git a/exampleSite/content/shortcodes/openapi/petstore.yaml b/docs/content/shortcodes/openapi/petstore.yaml
similarity index 100%
rename from exampleSite/content/shortcodes/openapi/petstore.yaml
rename to docs/content/shortcodes/openapi/petstore.yaml
diff --git a/exampleSite/content/shortcodes/resources/MaybeTreasure.en.txt b/docs/content/shortcodes/resources/MaybeTreasure.en.txt
similarity index 100%
rename from exampleSite/content/shortcodes/resources/MaybeTreasure.en.txt
rename to docs/content/shortcodes/resources/MaybeTreasure.en.txt
diff --git a/exampleSite/content/shortcodes/resources/MaybeTreasure.pir.txt b/docs/content/shortcodes/resources/MaybeTreasure.pir.txt
similarity index 100%
rename from exampleSite/content/shortcodes/resources/MaybeTreasure.pir.txt
rename to docs/content/shortcodes/resources/MaybeTreasure.pir.txt
diff --git a/exampleSite/content/shortcodes/resources/NoTreasure.en.txt b/docs/content/shortcodes/resources/NoTreasure.en.txt
similarity index 100%
rename from exampleSite/content/shortcodes/resources/NoTreasure.en.txt
rename to docs/content/shortcodes/resources/NoTreasure.en.txt
diff --git a/exampleSite/content/shortcodes/resources/Treasure.pir.txt b/docs/content/shortcodes/resources/Treasure.pir.txt
similarity index 100%
rename from exampleSite/content/shortcodes/resources/Treasure.pir.txt
rename to docs/content/shortcodes/resources/Treasure.pir.txt
diff --git a/exampleSite/content/shortcodes/resources/hugo.png b/docs/content/shortcodes/resources/hugo.png
similarity index 100%
rename from exampleSite/content/shortcodes/resources/hugo.png
rename to docs/content/shortcodes/resources/hugo.png
diff --git a/exampleSite/content/shortcodes/resources/index.en.md b/docs/content/shortcodes/resources/index.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/resources/index.en.md
rename to docs/content/shortcodes/resources/index.en.md
diff --git a/exampleSite/content/shortcodes/resources/index.pir.md b/docs/content/shortcodes/resources/index.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/resources/index.pir.md
rename to docs/content/shortcodes/resources/index.pir.md
diff --git a/exampleSite/content/shortcodes/siteparam.en.md b/docs/content/shortcodes/siteparam.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/siteparam.en.md
rename to docs/content/shortcodes/siteparam.en.md
diff --git a/exampleSite/content/shortcodes/siteparam.pir.md b/docs/content/shortcodes/siteparam.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/siteparam.pir.md
rename to docs/content/shortcodes/siteparam.pir.md
diff --git a/exampleSite/content/shortcodes/tab.en.md b/docs/content/shortcodes/tab.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/tab.en.md
rename to docs/content/shortcodes/tab.en.md
diff --git a/exampleSite/content/shortcodes/tab.pir.md b/docs/content/shortcodes/tab.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/tab.pir.md
rename to docs/content/shortcodes/tab.pir.md
diff --git a/exampleSite/content/shortcodes/tabs.en.md b/docs/content/shortcodes/tabs.en.md
similarity index 100%
rename from exampleSite/content/shortcodes/tabs.en.md
rename to docs/content/shortcodes/tabs.en.md
diff --git a/exampleSite/content/shortcodes/tabs.pir.md b/docs/content/shortcodes/tabs.pir.md
similarity index 100%
rename from exampleSite/content/shortcodes/tabs.pir.md
rename to docs/content/shortcodes/tabs.pir.md
diff --git a/exampleSite/content/showcase/_index.en.md b/docs/content/showcase/_index.en.md
similarity index 100%
rename from exampleSite/content/showcase/_index.en.md
rename to docs/content/showcase/_index.en.md
diff --git a/exampleSite/content/showcase/_index.pir.md b/docs/content/showcase/_index.pir.md
similarity index 100%
rename from exampleSite/content/showcase/_index.pir.md
rename to docs/content/showcase/_index.pir.md
diff --git a/exampleSite/content/showcase/bits-train.png b/docs/content/showcase/bits-train.png
similarity index 100%
rename from exampleSite/content/showcase/bits-train.png
rename to docs/content/showcase/bits-train.png
diff --git a/exampleSite/content/showcase/gobolinux.png b/docs/content/showcase/gobolinux.png
similarity index 100%
rename from exampleSite/content/showcase/gobolinux.png
rename to docs/content/showcase/gobolinux.png
diff --git a/exampleSite/content/showcase/pamasol-electrics-portal.png b/docs/content/showcase/pamasol-electrics-portal.png
similarity index 100%
rename from exampleSite/content/showcase/pamasol-electrics-portal.png
rename to docs/content/showcase/pamasol-electrics-portal.png
diff --git a/exampleSite/content/showcase/poesieland.png b/docs/content/showcase/poesieland.png
similarity index 100%
rename from exampleSite/content/showcase/poesieland.png
rename to docs/content/showcase/poesieland.png
diff --git a/exampleSite/content/tags/_index.en.md b/docs/content/tags/_index.en.md
similarity index 100%
rename from exampleSite/content/tags/_index.en.md
rename to docs/content/tags/_index.en.md
diff --git a/exampleSite/content/tags/_index.pir.md b/docs/content/tags/_index.pir.md
similarity index 100%
rename from exampleSite/content/tags/_index.pir.md
rename to docs/content/tags/_index.pir.md
diff --git a/exampleSite/content/tags/the-hidden/_index.en.md b/docs/content/tags/the-hidden/_index.en.md
similarity index 100%
rename from exampleSite/content/tags/the-hidden/_index.en.md
rename to docs/content/tags/the-hidden/_index.en.md
diff --git a/exampleSite/content/tags/the-hidden/_index.pir.md b/docs/content/tags/the-hidden/_index.pir.md
similarity index 100%
rename from exampleSite/content/tags/the-hidden/_index.pir.md
rename to docs/content/tags/the-hidden/_index.pir.md
diff --git a/exampleSite/frontmatter.json b/docs/frontmatter.json
similarity index 100%
rename from exampleSite/frontmatter.json
rename to docs/frontmatter.json
diff --git a/exampleSite/i18n/art-x-pir.toml b/docs/i18n/art-x-pir.toml
similarity index 100%
rename from exampleSite/i18n/art-x-pir.toml
rename to docs/i18n/art-x-pir.toml
diff --git a/exampleSite/layouts/changelog/views/article.html b/docs/layouts/changelog/views/article.html
similarity index 100%
rename from exampleSite/layouts/changelog/views/article.html
rename to docs/layouts/changelog/views/article.html
diff --git a/exampleSite/layouts/partials/custom-header.html b/docs/layouts/partials/custom-header.html
similarity index 100%
rename from exampleSite/layouts/partials/custom-header.html
rename to docs/layouts/partials/custom-header.html
diff --git a/exampleSite/layouts/partials/dependencies/variantgenerator.html b/docs/layouts/partials/dependencies/variantgenerator.html
similarity index 100%
rename from exampleSite/layouts/partials/dependencies/variantgenerator.html
rename to docs/layouts/partials/dependencies/variantgenerator.html
diff --git a/exampleSite/layouts/partials/logo.html b/docs/layouts/partials/logo.html
similarity index 100%
rename from exampleSite/layouts/partials/logo.html
rename to docs/layouts/partials/logo.html
diff --git a/exampleSite/layouts/partials/menu-footer.html b/docs/layouts/partials/menu-footer.html
similarity index 100%
rename from exampleSite/layouts/partials/menu-footer.html
rename to docs/layouts/partials/menu-footer.html
diff --git a/exampleSite/layouts/partials/shortcodes/multiconfig.html b/docs/layouts/partials/shortcodes/multiconfig.html
similarity index 100%
rename from exampleSite/layouts/partials/shortcodes/multiconfig.html
rename to docs/layouts/partials/shortcodes/multiconfig.html
diff --git a/exampleSite/layouts/partials/shortcodes/pages.html b/docs/layouts/partials/shortcodes/pages.html
similarity index 100%
rename from exampleSite/layouts/partials/shortcodes/pages.html
rename to docs/layouts/partials/shortcodes/pages.html
diff --git a/exampleSite/layouts/partials/shortcodes/piratify.html b/docs/layouts/partials/shortcodes/piratify.html
similarity index 100%
rename from exampleSite/layouts/partials/shortcodes/piratify.html
rename to docs/layouts/partials/shortcodes/piratify.html
diff --git a/exampleSite/layouts/partials/shortcodes/replaceRE.html b/docs/layouts/partials/shortcodes/replaceRE.html
similarity index 100%
rename from exampleSite/layouts/partials/shortcodes/replaceRE.html
rename to docs/layouts/partials/shortcodes/replaceRE.html
diff --git a/exampleSite/layouts/partials/toc.html b/docs/layouts/partials/toc.html
similarity index 100%
rename from exampleSite/layouts/partials/toc.html
rename to docs/layouts/partials/toc.html
diff --git a/exampleSite/layouts/releasenotes/views/article.html b/docs/layouts/releasenotes/views/article.html
similarity index 100%
rename from exampleSite/layouts/releasenotes/views/article.html
rename to docs/layouts/releasenotes/views/article.html
diff --git a/exampleSite/layouts/shortcodes/multiconfig.html b/docs/layouts/shortcodes/multiconfig.html
similarity index 100%
rename from exampleSite/layouts/shortcodes/multiconfig.html
rename to docs/layouts/shortcodes/multiconfig.html
diff --git a/exampleSite/layouts/shortcodes/pages.html b/docs/layouts/shortcodes/pages.html
similarity index 100%
rename from exampleSite/layouts/shortcodes/pages.html
rename to docs/layouts/shortcodes/pages.html
diff --git a/exampleSite/layouts/shortcodes/piratify.html b/docs/layouts/shortcodes/piratify.html
similarity index 100%
rename from exampleSite/layouts/shortcodes/piratify.html
rename to docs/layouts/shortcodes/piratify.html
diff --git a/exampleSite/layouts/shortcodes/replaceRE.html b/docs/layouts/shortcodes/replaceRE.html
similarity index 100%
rename from exampleSite/layouts/shortcodes/replaceRE.html
rename to docs/layouts/shortcodes/replaceRE.html
diff --git a/exampleSite/layouts/shortcodes/taxonomy.html b/docs/layouts/shortcodes/taxonomy.html
similarity index 100%
rename from exampleSite/layouts/shortcodes/taxonomy.html
rename to docs/layouts/shortcodes/taxonomy.html
diff --git a/exampleSite/layouts/shortcodes/term.html b/docs/layouts/shortcodes/term.html
similarity index 100%
rename from exampleSite/layouts/shortcodes/term.html
rename to docs/layouts/shortcodes/term.html
diff --git a/exampleSite/layouts/shortcodes/variantgenerator.html b/docs/layouts/shortcodes/variantgenerator.html
similarity index 100%
rename from exampleSite/layouts/shortcodes/variantgenerator.html
rename to docs/layouts/shortcodes/variantgenerator.html
diff --git a/exampleSite/makeTransByConentDir.js b/docs/makeTransByConentDir.js
similarity index 100%
rename from exampleSite/makeTransByConentDir.js
rename to docs/makeTransByConentDir.js
diff --git a/exampleSite/static/images/logo.svg b/docs/static/images/logo.svg
similarity index 99%
rename from exampleSite/static/images/logo.svg
rename to docs/static/images/logo.svg
index 48b180dc69..8b5d3cf50c 100644
--- a/exampleSite/static/images/logo.svg
+++ b/docs/static/images/logo.svg
@@ -1,7 +1,7 @@
-
-