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 @@ - - - - - - + + + + + + \ No newline at end of file diff --git a/exampleSite/static/js/github-buttons.js b/docs/static/js/github-buttons.js similarity index 98% rename from exampleSite/static/js/github-buttons.js rename to docs/static/js/github-buttons.js index 16dddbccee..c4bf8e0128 100644 --- a/exampleSite/static/js/github-buttons.js +++ b/docs/static/js/github-buttons.js @@ -1,589 +1,589 @@ -/*! - * github-buttons v2.27.0 - McShelby/hugo-theme-relearn#155 - - make render() available on window.githubButtons - * (c) 2023 なつき - * @license BSD-2-Clause - */ -(function () { - 'use strict'; - - var document = window.document; - - var location = document.location; - - var Math = window.Math; - - var HTMLElement = window.HTMLElement; - - var XMLHttpRequest = window.XMLHttpRequest; - - var buttonClass = 'github-button'; - - var iframeURL = 'https://' + (/* istanbul ignore next */ 'buttons.github.io') + '/buttons.html'; - - var domain = 'github.com'; - - var apiBaseURL = 'https://api.' + domain; - - var useXHR = XMLHttpRequest && 'prototype' in XMLHttpRequest && 'withCredentials' in XMLHttpRequest.prototype; - - var useShadowDOM = useXHR && HTMLElement && 'attachShadow' in HTMLElement.prototype && !('prototype' in HTMLElement.prototype.attachShadow); - - var forEach = function (obj, func) { - for (var i = 0, len = obj.length; i < len; i++) { - func(obj[i]); - } - }; - - var createElementInDocument = function (document) { - return function (tag, props, children) { - var el = document.createElement(tag); - if (props != null) { - for (var prop in props) { - var val = props[prop]; - if (val != null) { - if (el[prop] != null) { - el[prop] = val; - } else { - el.setAttribute(prop, val); - } - } - } - } - if (children != null) { - forEach(children, function (child) { - el.appendChild(typeof child === 'string' ? document.createTextNode(child) : child); - }); - } - return el - } - }; - - var createElement = createElementInDocument(document); - - var dispatchOnce = function (func) { - var onceToken; - return function () { - if (!onceToken) { - onceToken = 1; - func.apply(this, arguments); - } - } - }; - - var hasOwnProperty = function (obj, prop) { - return {}.hasOwnProperty.call(obj, prop) - }; - - var toLowerCase = function (obj) { - return ('' + obj).toLowerCase() - }; - - var stringify = function (obj, sep, eq, encodeURIComponent) { - if (sep == null) { - sep = '&'; - } - if (eq == null) { - eq = '='; - } - if (encodeURIComponent == null) { - encodeURIComponent = window.encodeURIComponent; - } - var params = []; - for (var name in obj) { - var value = obj[name]; - if (value != null) { - params.push(encodeURIComponent(name) + eq + encodeURIComponent(value)); - } - } - return params.join(sep) - }; - - var parse = function (str, sep, eq, decodeURIComponent) { - if (sep == null) { - sep = '&'; - } - if (eq == null) { - eq = '='; - } - if (decodeURIComponent == null) { - decodeURIComponent = window.decodeURIComponent; - } - var obj = {}; - forEach(str.split(sep), function (entry) { - if (entry !== '') { - var ref = entry.split(eq); - obj[decodeURIComponent(ref[0])] = (ref[1] != null ? decodeURIComponent(ref.slice(1).join(eq)) : undefined); - } - }); - return obj - }; - - var onEvent = function (target, eventName, func) { - /* istanbul ignore else: IE lt 9 */ - if (target.addEventListener) { - target.addEventListener(eventName, func, false); - } else { - target.attachEvent('on' + eventName, func); - } - }; - - var offEvent = function (target, eventName, func) { - /* istanbul ignore else: IE lt 9 */ - if (target.removeEventListener) { - target.removeEventListener(eventName, func, false); - } else { - target.detachEvent('on' + eventName, func); - } - }; - - var onceEvent = function (target, eventName, func) { - var callback = function () { - offEvent(target, eventName, callback); - return func.apply(this, arguments) - }; - onEvent(target, eventName, callback); - }; - - var onceReadyStateChange = /* istanbul ignore next: IE lt 9 */ function (target, regex, func) { - if (target.readyState != null) { - var eventName = 'readystatechange'; - var callback = function () { - if (regex.test(target.readyState)) { - offEvent(target, eventName, callback); - return func.apply(this, arguments) - } - }; - onEvent(target, eventName, callback); - } - }; - - var defer = /* istanbul ignore next */ function (func) { - if (document.readyState === 'complete' || (document.readyState !== 'loading' && !document.documentElement.doScroll)) { - setTimeout(func); - } else { - if (document.addEventListener) { - var callback = dispatchOnce(func); - onceEvent(document, 'DOMContentLoaded', callback); - onceEvent(window, 'load', callback); - } else { - onceReadyStateChange(document, /m/, func); - } - } - }; - - var buttonsCssText = "body{margin:0}a{text-decoration:none;outline:0}.widget{display:inline-block;overflow:hidden;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif;font-size:0;line-height:0;white-space:nowrap}.btn,.social-count{position:relative;display:inline-block;display:inline-flex;height:14px;padding:2px 5px;font-size:11px;font-weight:600;line-height:14px;vertical-align:bottom;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-repeat:repeat-x;background-position:-1px -1px;background-size:110% 110%;border:1px solid}.btn{border-radius:.25em}.btn:not(:last-child){border-radius:.25em 0 0 .25em}.social-count{border-left:0;border-radius:0 .25em .25em 0}.widget-lg .btn,.widget-lg .social-count{height:16px;padding:5px 10px;font-size:12px;line-height:16px}.octicon{display:inline-block;vertical-align:text-top;fill:currentColor;overflow:visible}"; - - var light = ".btn:focus-visible,.social-count:focus-visible{outline:2px solid #0969da;outline-offset:-2px}.btn{color:#24292f;background-color:#ebf0f4;border-color:#ccd1d5;border-color:rgba(31,35,40,.15);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%23f6f8fa'/%3e%3cstop offset='90%25' stop-color='%23ebf0f4'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\");background-image:-moz-linear-gradient(top, #f6f8fa, #ebf0f4 90%);background-image:linear-gradient(180deg, #f6f8fa, #ebf0f4 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FFF6F8FA', endColorstr='#FFEAEFF3')}:root .btn{filter:none}.btn:hover,.btn:focus{background-color:#e9ebef;background-position:0 -0.5em;border-color:#cbcdd1;border-color:rgba(31,35,40,.15);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%23f3f4f6'/%3e%3cstop offset='90%25' stop-color='%23e9ebef'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\");background-image:-moz-linear-gradient(top, #f3f4f6, #e9ebef 90%);background-image:linear-gradient(180deg, #f3f4f6, #e9ebef 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FFF3F4F6', endColorstr='#FFE8EAEE')}:root .btn:hover,:root .btn:focus{filter:none}.btn:active{background-color:#e5e9ed;border-color:#c7cbcf;border-color:rgba(31,35,40,.15);background-image:none;filter:none}.social-count{color:#24292f;background-color:#fff;border-color:#dddedf;border-color:rgba(31,35,40,.15)}.social-count:hover,.social-count:focus{color:#0969da}.octicon-heart{color:#bf3989}"; - - var lightHighContrast = ".btn:focus-visible,.social-count:focus-visible{outline:2px solid #0349b4;outline-offset:-2px}.btn{color:#0e1116;background-color:#e7ecf0;border-color:#2f3237;border-color:rgba(1,4,9,.8);background-image:none;filter:none}.btn:hover,.btn:focus{background-color:#c4cdd5;background-position:0 -0.5em;border-color:#282c32;border-color:rgba(1,4,9,.8);background-image:none;filter:none}.btn:active{background-color:#d8dde1;border-color:#2c2f34;border-color:rgba(1,4,9,.8)}.social-count{color:#0e1116;background-color:#fff;border-color:#34363a;border-color:rgba(1,4,9,.8)}.social-count:hover,.social-count:focus{color:#0349b4}.octicon-heart{color:#971368}"; - - var dark = ".btn:focus-visible,.social-count:focus-visible{outline:2px solid #2f81f7;outline-offset:-2px}.btn{color:#c9d1d9;background-color:#1a1e23;border-color:#2f3439;border-color:rgba(240,246,252,.1);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%2321262d'/%3e%3cstop offset='90%25' stop-color='%231a1e23'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\");background-image:-moz-linear-gradient(top, #21262d, #1a1e23 90%);background-image:linear-gradient(180deg, #21262d, #1a1e23 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FF21262D', endColorstr='#FF191D22')}:root .btn{filter:none}.btn:hover,.btn:focus{background-color:#292e33;background-position:0 -0.5em;border-color:#8b949e;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%2330363d'/%3e%3cstop offset='90%25' stop-color='%23292e33'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\");background-image:-moz-linear-gradient(top, #30363d, #292e33 90%);background-image:linear-gradient(180deg, #30363d, #292e33 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FF30363D', endColorstr='#FF282D32')}:root .btn:hover,:root .btn:focus{filter:none}.btn:active{background-color:#161719;border-color:#8b949e;background-image:none;filter:none}.social-count{color:#c9d1d9;background-color:#0d1117;border-color:#24282e;border-color:rgba(240,246,252,.1)}.social-count:hover,.social-count:focus{color:#2f81f7}.octicon-heart{color:#db61a2}"; - - var darkDimmed = ".btn:focus-visible,.social-count:focus-visible{outline:2px solid #539bf5;outline-offset:-2px}.btn{color:#adbac7;background-color:#30363d;border-color:#40464e;border-color:rgba(205,217,229,.1);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%23373e47'/%3e%3cstop offset='90%25' stop-color='%2330363d'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\");background-image:-moz-linear-gradient(top, #373e47, #30363d 90%);background-image:linear-gradient(180deg, #373e47, #30363d 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FF373E47', endColorstr='#FF2F353C')}:root .btn{filter:none}.btn:hover,.btn:focus{background-color:#3c444d;background-position:0 -0.5em;border-color:#768390;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%23444c56'/%3e%3cstop offset='90%25' stop-color='%233c444d'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\");background-image:-moz-linear-gradient(top, #444c56, #3c444d 90%);background-image:linear-gradient(180deg, #444c56, #3c444d 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FF444C56', endColorstr='#FF3B434C')}:root .btn:hover,:root .btn:focus{filter:none}.btn:active{background-color:#2e3031;border-color:#768390;background-image:none;filter:none}.social-count{color:#adbac7;background-color:#22272e;border-color:#333940;border-color:rgba(205,217,229,.1)}.social-count:hover,.social-count:focus{color:#539bf5}.octicon-heart{color:#c96198}"; - - var darkHighContrast = ".btn:focus-visible,.social-count:focus-visible{outline:2px solid #71b7ff;outline-offset:-2px}.btn{color:#f0f3f6;background-color:#272b33;border-color:#7a828e;background-image:none;filter:none}.btn:hover,.btn:focus{background-color:#4a515b;background-position:0 -0.5em;border-color:#bdc4cc;background-image:none;filter:none}.btn:active{background-color:#1d1d1f;border-color:#bdc4cc}.social-count{color:#f0f3f6;background-color:#0a0c10;border-color:#7a828e}.social-count:hover,.social-count:focus{color:#71b7ff}.octicon-heart{color:#ef6eb1}"; - - var widgetColorSchemes = { - light: light, - light_high_contrast: lightHighContrast, - dark: dark, - dark_dimmed: darkDimmed, - dark_high_contrast: darkHighContrast - }; - - var getColorSchemeMediaQuery = function (systemColorScheme, widgetColorScheme) { - return '@media(prefers-color-scheme:' + systemColorScheme + '){' + widgetColorSchemes[hasOwnProperty(widgetColorSchemes, widgetColorScheme) ? widgetColorScheme : systemColorScheme] + '}' - }; - - var getColorScheme = function (declarations) { - if (declarations == null) { - return widgetColorSchemes.light - } - - if (hasOwnProperty(widgetColorSchemes, declarations)) { - return widgetColorSchemes[declarations] - } - - var colorSchemes = parse(declarations, ';', ':', function (str) { - return str.replace(/^[ \t\n\f\r]+|[ \t\n\f\r]+$/g, '') - }); - - return widgetColorSchemes[hasOwnProperty(widgetColorSchemes, colorSchemes['no-preference']) ? colorSchemes['no-preference'] : 'light'] + - getColorSchemeMediaQuery('light', colorSchemes.light) + - getColorSchemeMediaQuery('dark', colorSchemes.dark) - }; - - var data = { - "comment-discussion": { - heights: { - "16": { - width: 16, - path: "" - } - } - }, - download: { - heights: { - "16": { - width: 16, - path: "" - } - } - }, - eye: { - heights: { - "16": { - width: 16, - path: "" - } - } - }, - heart: { - heights: { - "16": { - width: 16, - path: "" - } - } - }, - "issue-opened": { - heights: { - "16": { - width: 16, - path: "" - } - } - }, - "mark-github": { - heights: { - "16": { - width: 16, - path: "" - } - } - }, - "package": { - heights: { - "16": { - width: 16, - path: "" - } - } - }, - play: { - heights: { - "16": { - width: 16, - path: "" - } - } - }, - "repo-forked": { - heights: { - "16": { - width: 16, - path: "" - } - } - }, - "repo-template": { - heights: { - "16": { - width: 16, - path: "" - } - } - }, - star: { - heights: { - "16": { - width: 16, - path: "" - } - } - } - }; - - var octicon = function (icon, height) { - icon = toLowerCase(icon).replace(/^octicon-/, ''); - if (!hasOwnProperty(data, icon)) { - icon = 'mark-github'; - } - - var defaultHeight = height >= 24 && /* istanbul ignore next */ 24 in data[icon].heights ? /* istanbul ignore next */ 24 : 16; - - var svg = data[icon].heights[defaultHeight]; - - return '' - }; - - var queues = {}; - - var fetch = function (url, func) { - var queue = queues[url] || (queues[url] = []); - if (queue.push(func) > 1) { - return - } - - var callback = dispatchOnce(function () { - delete queues[url]; - while ((func = queue.shift())) { - func.apply(null, arguments); - } - }); - - if (useXHR) { - var xhr = new XMLHttpRequest(); - onEvent(xhr, 'abort', callback); - onEvent(xhr, 'error', callback); - onEvent(xhr, 'load', function () { - var data; - try { - data = JSON.parse(this.responseText); - } catch (error) { - callback(error); - return - } - callback(this.status !== 200, data); - }); - xhr.open('GET', url); - xhr.send(); - } else { - var contentWindow = this || window; - contentWindow._ = function (json) { - contentWindow._ = null; - callback(json.meta.status !== 200, json.data); - }; - var script = createElementInDocument(contentWindow.document)('script', { - async: true, - src: url + (url.indexOf('?') !== -1 ? '&' : '?') + 'callback=_' - }); - var onloadend = /* istanbul ignore next: IE lt 9 */ function () { - if (contentWindow._) { - contentWindow._({ - meta: {} - }); - } - }; - onEvent(script, 'load', onloadend); - onEvent(script, 'error', onloadend); - onceReadyStateChange(script, /de|m/, onloadend); - contentWindow.document.getElementsByTagName('head')[0].appendChild(script); - } - }; - - var render$1 = function (root, options, func) { - var createElement = createElementInDocument(root.ownerDocument); - - var style = root.appendChild(createElement('style', { - type: 'text/css' - })); - - var cssText = buttonsCssText + getColorScheme(options['data-color-scheme']); - - /* istanbul ignore if: IE lt 9 */ - if (style.styleSheet) { - style.styleSheet.cssText = cssText; - } else { - style.appendChild(root.ownerDocument.createTextNode(cssText)); - } - - var isLarge = toLowerCase(options['data-size']) === 'large'; - - var btn = createElement('a', { - className: 'btn', - href: options.href, - rel: 'noopener', - target: '_blank', - title: options.title || undefined, - 'aria-label': options['aria-label'] || undefined, - innerHTML: octicon(options['data-icon'], isLarge ? 16 : 14) + ' ' - }, [ - createElement('span', {}, [options['data-text'] || '']) - ]); - - var widget = root.appendChild(createElement('div', { - className: 'widget' + (isLarge ? ' widget-lg' : '') - }, [ - btn - ])); - - var hostname = btn.hostname.replace(/\.$/, ''); - if (('.' + hostname).substring(hostname.length - domain.length) !== ('.' + domain)) { - btn.removeAttribute('href'); - func(widget); - return - } - - var path = (' /' + btn.pathname).split(/\/+/); - if (((hostname === domain || hostname === 'gist.' + domain) && path[3] === 'archive') || - (hostname === domain && path[3] === 'releases' && (path[4] === 'download' || (path[4] === 'latest' && path[5] === 'download'))) || - (hostname === 'codeload.' + domain)) { - btn.target = '_top'; - } - - if (toLowerCase(options['data-show-count']) !== 'true' || - hostname !== domain || - path[1] === 'marketplace' || - path[1] === 'sponsors' || - path[1] === 'orgs' || - path[1] === 'users' || - path[1] === '-') { - func(widget); - return - } - - var href, property; - if (!path[2] && path[1]) { - property = 'followers'; - href = '?tab=followers'; - } else if (!path[3] && path[2]) { - property = 'stargazers_count'; - href = '/stargazers'; - } else if (!path[4] && path[3] === 'subscription') { - property = 'subscribers_count'; - href = '/watchers'; - } else if (!path[4] && path[3] === 'fork') { - property = 'forks_count'; - href = '/forks'; - } else if (path[3] === 'issues') { - property = 'open_issues_count'; - href = '/issues'; - } else { - func(widget); - return - } - - var api = path[2] ? '/repos/' + path[1] + '/' + path[2] : '/users/' + path[1]; - fetch.call(this, apiBaseURL + api, function (error, json) { - if (!error) { - var data = json[property]; - widget.appendChild(createElement('a', { - className: 'social-count', - href: json.html_url + href, - rel: 'noopener', - target: '_blank', - 'aria-label': data + ' ' + property.replace(/_count$/, '').replace('_', ' ').slice(0, data < 2 ? -1 : undefined) + ' on GitHub' - }, [ - ('' + data).replace(/\B(?=(\d{3})+(?!\d))/g, ',') - ])); - } - func(widget); - }); - }; - - var parseOptions = function (anchor) { - var options = { - href: anchor.href, - title: anchor.title, - 'aria-label': anchor.getAttribute('aria-label') - }; - - forEach(['icon', 'color-scheme', 'text', 'size', 'show-count'], function (option) { - var attribute = 'data-' + option; - options[attribute] = anchor.getAttribute(attribute); - }); - - if (options['data-text'] == null) { - options['data-text'] = anchor.textContent || anchor.innerText; - } - - return options - }; - - var devicePixelRatio = window.devicePixelRatio || /* istanbul ignore next */ 1; - - var ceilPixel = function (px) { - return (devicePixelRatio > 1 ? Math.ceil(Math.round(px * devicePixelRatio) / devicePixelRatio * 2) / 2 : Math.ceil(px)) || 0 - }; - - var get = function (el) { - var width = el.offsetWidth; - var height = el.offsetHeight; - if (el.getBoundingClientRect) { - var boundingClientRect = el.getBoundingClientRect(); - width = Math.max(width, ceilPixel(boundingClientRect.width)); - height = Math.max(height, ceilPixel(boundingClientRect.height)); - } - return [width, height] - }; - - var set = function (el, size) { - el.style.width = size[0] + 'px'; - el.style.height = size[1] + 'px'; - }; - - var render = function (options, func) { - if (options == null || func == null) { - return - } - if (options.getAttribute) { - options = parseOptions(options); - } - if (useShadowDOM) { - var host = createElement('span'); - render$1(host.attachShadow({ mode: 'closed' }), options, function () { - func(host); - }); - } else { - var iframe = createElement('iframe', { - src: 'javascript:0', - title: options.title || undefined, - allowtransparency: true, - scrolling: 'no', - frameBorder: 0 - }); - set(iframe, [0, 0]); - iframe.style.border = 'none'; - var callback = function () { - var contentWindow = iframe.contentWindow; - var body; - try { - body = contentWindow.document.body; - } catch (_) /* istanbul ignore next: IE 11 */ { - document.body.appendChild(iframe.parentNode.removeChild(iframe)); - return - } - offEvent(iframe, 'load', callback); - render$1.call(contentWindow, body, options, function (widget) { - var size = get(widget); - iframe.parentNode.removeChild(iframe); - onceEvent(iframe, 'load', function () { - set(iframe, size); - }); - iframe.src = iframeURL + '#' + (iframe.name = stringify(options)); - func(iframe); - }); - }; - onEvent(iframe, 'load', callback); - document.body.appendChild(iframe); - } - }; - - if (location.protocol + '//' + location.host + location.pathname === iframeURL) { - render$1(document.body, parse(window.name || location.hash.replace(/^#/, '')), function () {}); - } else { - defer(function () { - var anchors = document.querySelectorAll - ? document.querySelectorAll('a.' + buttonClass) - : (function () { - var results = []; - forEach(document.getElementsByTagName('a'), function (a) { - if ((' ' + a.className + ' ').replace(/[ \t\n\f\r]+/g, ' ').indexOf(' ' + buttonClass + ' ') !== -1) { - results.push(a); - } - }); - return results - })(); - forEach(anchors, function (anchor) { - render(anchor, function (el) { - anchor.parentNode.replaceChild(el, anchor); - }); - }); - }); - } - - window.githubButtons = { render: render }; -})(); +/*! + * github-buttons v2.27.0 + McShelby/hugo-theme-relearn#155 + - make render() available on window.githubButtons + * (c) 2023 なつき + * @license BSD-2-Clause + */ +(function () { + 'use strict'; + + var document = window.document; + + var location = document.location; + + var Math = window.Math; + + var HTMLElement = window.HTMLElement; + + var XMLHttpRequest = window.XMLHttpRequest; + + var buttonClass = 'github-button'; + + var iframeURL = 'https://' + (/* istanbul ignore next */ 'buttons.github.io') + '/buttons.html'; + + var domain = 'github.com'; + + var apiBaseURL = 'https://api.' + domain; + + var useXHR = XMLHttpRequest && 'prototype' in XMLHttpRequest && 'withCredentials' in XMLHttpRequest.prototype; + + var useShadowDOM = useXHR && HTMLElement && 'attachShadow' in HTMLElement.prototype && !('prototype' in HTMLElement.prototype.attachShadow); + + var forEach = function (obj, func) { + for (var i = 0, len = obj.length; i < len; i++) { + func(obj[i]); + } + }; + + var createElementInDocument = function (document) { + return function (tag, props, children) { + var el = document.createElement(tag); + if (props != null) { + for (var prop in props) { + var val = props[prop]; + if (val != null) { + if (el[prop] != null) { + el[prop] = val; + } else { + el.setAttribute(prop, val); + } + } + } + } + if (children != null) { + forEach(children, function (child) { + el.appendChild(typeof child === 'string' ? document.createTextNode(child) : child); + }); + } + return el + } + }; + + var createElement = createElementInDocument(document); + + var dispatchOnce = function (func) { + var onceToken; + return function () { + if (!onceToken) { + onceToken = 1; + func.apply(this, arguments); + } + } + }; + + var hasOwnProperty = function (obj, prop) { + return {}.hasOwnProperty.call(obj, prop) + }; + + var toLowerCase = function (obj) { + return ('' + obj).toLowerCase() + }; + + var stringify = function (obj, sep, eq, encodeURIComponent) { + if (sep == null) { + sep = '&'; + } + if (eq == null) { + eq = '='; + } + if (encodeURIComponent == null) { + encodeURIComponent = window.encodeURIComponent; + } + var params = []; + for (var name in obj) { + var value = obj[name]; + if (value != null) { + params.push(encodeURIComponent(name) + eq + encodeURIComponent(value)); + } + } + return params.join(sep) + }; + + var parse = function (str, sep, eq, decodeURIComponent) { + if (sep == null) { + sep = '&'; + } + if (eq == null) { + eq = '='; + } + if (decodeURIComponent == null) { + decodeURIComponent = window.decodeURIComponent; + } + var obj = {}; + forEach(str.split(sep), function (entry) { + if (entry !== '') { + var ref = entry.split(eq); + obj[decodeURIComponent(ref[0])] = (ref[1] != null ? decodeURIComponent(ref.slice(1).join(eq)) : undefined); + } + }); + return obj + }; + + var onEvent = function (target, eventName, func) { + /* istanbul ignore else: IE lt 9 */ + if (target.addEventListener) { + target.addEventListener(eventName, func, false); + } else { + target.attachEvent('on' + eventName, func); + } + }; + + var offEvent = function (target, eventName, func) { + /* istanbul ignore else: IE lt 9 */ + if (target.removeEventListener) { + target.removeEventListener(eventName, func, false); + } else { + target.detachEvent('on' + eventName, func); + } + }; + + var onceEvent = function (target, eventName, func) { + var callback = function () { + offEvent(target, eventName, callback); + return func.apply(this, arguments) + }; + onEvent(target, eventName, callback); + }; + + var onceReadyStateChange = /* istanbul ignore next: IE lt 9 */ function (target, regex, func) { + if (target.readyState != null) { + var eventName = 'readystatechange'; + var callback = function () { + if (regex.test(target.readyState)) { + offEvent(target, eventName, callback); + return func.apply(this, arguments) + } + }; + onEvent(target, eventName, callback); + } + }; + + var defer = /* istanbul ignore next */ function (func) { + if (document.readyState === 'complete' || (document.readyState !== 'loading' && !document.documentElement.doScroll)) { + setTimeout(func); + } else { + if (document.addEventListener) { + var callback = dispatchOnce(func); + onceEvent(document, 'DOMContentLoaded', callback); + onceEvent(window, 'load', callback); + } else { + onceReadyStateChange(document, /m/, func); + } + } + }; + + var buttonsCssText = "body{margin:0}a{text-decoration:none;outline:0}.widget{display:inline-block;overflow:hidden;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif;font-size:0;line-height:0;white-space:nowrap}.btn,.social-count{position:relative;display:inline-block;display:inline-flex;height:14px;padding:2px 5px;font-size:11px;font-weight:600;line-height:14px;vertical-align:bottom;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-repeat:repeat-x;background-position:-1px -1px;background-size:110% 110%;border:1px solid}.btn{border-radius:.25em}.btn:not(:last-child){border-radius:.25em 0 0 .25em}.social-count{border-left:0;border-radius:0 .25em .25em 0}.widget-lg .btn,.widget-lg .social-count{height:16px;padding:5px 10px;font-size:12px;line-height:16px}.octicon{display:inline-block;vertical-align:text-top;fill:currentColor;overflow:visible}"; + + var light = ".btn:focus-visible,.social-count:focus-visible{outline:2px solid #0969da;outline-offset:-2px}.btn{color:#24292f;background-color:#ebf0f4;border-color:#ccd1d5;border-color:rgba(31,35,40,.15);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%23f6f8fa'/%3e%3cstop offset='90%25' stop-color='%23ebf0f4'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\");background-image:-moz-linear-gradient(top, #f6f8fa, #ebf0f4 90%);background-image:linear-gradient(180deg, #f6f8fa, #ebf0f4 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FFF6F8FA', endColorstr='#FFEAEFF3')}:root .btn{filter:none}.btn:hover,.btn:focus{background-color:#e9ebef;background-position:0 -0.5em;border-color:#cbcdd1;border-color:rgba(31,35,40,.15);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%23f3f4f6'/%3e%3cstop offset='90%25' stop-color='%23e9ebef'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\");background-image:-moz-linear-gradient(top, #f3f4f6, #e9ebef 90%);background-image:linear-gradient(180deg, #f3f4f6, #e9ebef 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FFF3F4F6', endColorstr='#FFE8EAEE')}:root .btn:hover,:root .btn:focus{filter:none}.btn:active{background-color:#e5e9ed;border-color:#c7cbcf;border-color:rgba(31,35,40,.15);background-image:none;filter:none}.social-count{color:#24292f;background-color:#fff;border-color:#dddedf;border-color:rgba(31,35,40,.15)}.social-count:hover,.social-count:focus{color:#0969da}.octicon-heart{color:#bf3989}"; + + var lightHighContrast = ".btn:focus-visible,.social-count:focus-visible{outline:2px solid #0349b4;outline-offset:-2px}.btn{color:#0e1116;background-color:#e7ecf0;border-color:#2f3237;border-color:rgba(1,4,9,.8);background-image:none;filter:none}.btn:hover,.btn:focus{background-color:#c4cdd5;background-position:0 -0.5em;border-color:#282c32;border-color:rgba(1,4,9,.8);background-image:none;filter:none}.btn:active{background-color:#d8dde1;border-color:#2c2f34;border-color:rgba(1,4,9,.8)}.social-count{color:#0e1116;background-color:#fff;border-color:#34363a;border-color:rgba(1,4,9,.8)}.social-count:hover,.social-count:focus{color:#0349b4}.octicon-heart{color:#971368}"; + + var dark = ".btn:focus-visible,.social-count:focus-visible{outline:2px solid #2f81f7;outline-offset:-2px}.btn{color:#c9d1d9;background-color:#1a1e23;border-color:#2f3439;border-color:rgba(240,246,252,.1);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%2321262d'/%3e%3cstop offset='90%25' stop-color='%231a1e23'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\");background-image:-moz-linear-gradient(top, #21262d, #1a1e23 90%);background-image:linear-gradient(180deg, #21262d, #1a1e23 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FF21262D', endColorstr='#FF191D22')}:root .btn{filter:none}.btn:hover,.btn:focus{background-color:#292e33;background-position:0 -0.5em;border-color:#8b949e;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%2330363d'/%3e%3cstop offset='90%25' stop-color='%23292e33'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\");background-image:-moz-linear-gradient(top, #30363d, #292e33 90%);background-image:linear-gradient(180deg, #30363d, #292e33 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FF30363D', endColorstr='#FF282D32')}:root .btn:hover,:root .btn:focus{filter:none}.btn:active{background-color:#161719;border-color:#8b949e;background-image:none;filter:none}.social-count{color:#c9d1d9;background-color:#0d1117;border-color:#24282e;border-color:rgba(240,246,252,.1)}.social-count:hover,.social-count:focus{color:#2f81f7}.octicon-heart{color:#db61a2}"; + + var darkDimmed = ".btn:focus-visible,.social-count:focus-visible{outline:2px solid #539bf5;outline-offset:-2px}.btn{color:#adbac7;background-color:#30363d;border-color:#40464e;border-color:rgba(205,217,229,.1);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%23373e47'/%3e%3cstop offset='90%25' stop-color='%2330363d'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\");background-image:-moz-linear-gradient(top, #373e47, #30363d 90%);background-image:linear-gradient(180deg, #373e47, #30363d 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FF373E47', endColorstr='#FF2F353C')}:root .btn{filter:none}.btn:hover,.btn:focus{background-color:#3c444d;background-position:0 -0.5em;border-color:#768390;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%23444c56'/%3e%3cstop offset='90%25' stop-color='%233c444d'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\");background-image:-moz-linear-gradient(top, #444c56, #3c444d 90%);background-image:linear-gradient(180deg, #444c56, #3c444d 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FF444C56', endColorstr='#FF3B434C')}:root .btn:hover,:root .btn:focus{filter:none}.btn:active{background-color:#2e3031;border-color:#768390;background-image:none;filter:none}.social-count{color:#adbac7;background-color:#22272e;border-color:#333940;border-color:rgba(205,217,229,.1)}.social-count:hover,.social-count:focus{color:#539bf5}.octicon-heart{color:#c96198}"; + + var darkHighContrast = ".btn:focus-visible,.social-count:focus-visible{outline:2px solid #71b7ff;outline-offset:-2px}.btn{color:#f0f3f6;background-color:#272b33;border-color:#7a828e;background-image:none;filter:none}.btn:hover,.btn:focus{background-color:#4a515b;background-position:0 -0.5em;border-color:#bdc4cc;background-image:none;filter:none}.btn:active{background-color:#1d1d1f;border-color:#bdc4cc}.social-count{color:#f0f3f6;background-color:#0a0c10;border-color:#7a828e}.social-count:hover,.social-count:focus{color:#71b7ff}.octicon-heart{color:#ef6eb1}"; + + var widgetColorSchemes = { + light: light, + light_high_contrast: lightHighContrast, + dark: dark, + dark_dimmed: darkDimmed, + dark_high_contrast: darkHighContrast + }; + + var getColorSchemeMediaQuery = function (systemColorScheme, widgetColorScheme) { + return '@media(prefers-color-scheme:' + systemColorScheme + '){' + widgetColorSchemes[hasOwnProperty(widgetColorSchemes, widgetColorScheme) ? widgetColorScheme : systemColorScheme] + '}' + }; + + var getColorScheme = function (declarations) { + if (declarations == null) { + return widgetColorSchemes.light + } + + if (hasOwnProperty(widgetColorSchemes, declarations)) { + return widgetColorSchemes[declarations] + } + + var colorSchemes = parse(declarations, ';', ':', function (str) { + return str.replace(/^[ \t\n\f\r]+|[ \t\n\f\r]+$/g, '') + }); + + return widgetColorSchemes[hasOwnProperty(widgetColorSchemes, colorSchemes['no-preference']) ? colorSchemes['no-preference'] : 'light'] + + getColorSchemeMediaQuery('light', colorSchemes.light) + + getColorSchemeMediaQuery('dark', colorSchemes.dark) + }; + + var data = { + "comment-discussion": { + heights: { + "16": { + width: 16, + path: "" + } + } + }, + download: { + heights: { + "16": { + width: 16, + path: "" + } + } + }, + eye: { + heights: { + "16": { + width: 16, + path: "" + } + } + }, + heart: { + heights: { + "16": { + width: 16, + path: "" + } + } + }, + "issue-opened": { + heights: { + "16": { + width: 16, + path: "" + } + } + }, + "mark-github": { + heights: { + "16": { + width: 16, + path: "" + } + } + }, + "package": { + heights: { + "16": { + width: 16, + path: "" + } + } + }, + play: { + heights: { + "16": { + width: 16, + path: "" + } + } + }, + "repo-forked": { + heights: { + "16": { + width: 16, + path: "" + } + } + }, + "repo-template": { + heights: { + "16": { + width: 16, + path: "" + } + } + }, + star: { + heights: { + "16": { + width: 16, + path: "" + } + } + } + }; + + var octicon = function (icon, height) { + icon = toLowerCase(icon).replace(/^octicon-/, ''); + if (!hasOwnProperty(data, icon)) { + icon = 'mark-github'; + } + + var defaultHeight = height >= 24 && /* istanbul ignore next */ 24 in data[icon].heights ? /* istanbul ignore next */ 24 : 16; + + var svg = data[icon].heights[defaultHeight]; + + return '' + }; + + var queues = {}; + + var fetch = function (url, func) { + var queue = queues[url] || (queues[url] = []); + if (queue.push(func) > 1) { + return + } + + var callback = dispatchOnce(function () { + delete queues[url]; + while ((func = queue.shift())) { + func.apply(null, arguments); + } + }); + + if (useXHR) { + var xhr = new XMLHttpRequest(); + onEvent(xhr, 'abort', callback); + onEvent(xhr, 'error', callback); + onEvent(xhr, 'load', function () { + var data; + try { + data = JSON.parse(this.responseText); + } catch (error) { + callback(error); + return + } + callback(this.status !== 200, data); + }); + xhr.open('GET', url); + xhr.send(); + } else { + var contentWindow = this || window; + contentWindow._ = function (json) { + contentWindow._ = null; + callback(json.meta.status !== 200, json.data); + }; + var script = createElementInDocument(contentWindow.document)('script', { + async: true, + src: url + (url.indexOf('?') !== -1 ? '&' : '?') + 'callback=_' + }); + var onloadend = /* istanbul ignore next: IE lt 9 */ function () { + if (contentWindow._) { + contentWindow._({ + meta: {} + }); + } + }; + onEvent(script, 'load', onloadend); + onEvent(script, 'error', onloadend); + onceReadyStateChange(script, /de|m/, onloadend); + contentWindow.document.getElementsByTagName('head')[0].appendChild(script); + } + }; + + var render$1 = function (root, options, func) { + var createElement = createElementInDocument(root.ownerDocument); + + var style = root.appendChild(createElement('style', { + type: 'text/css' + })); + + var cssText = buttonsCssText + getColorScheme(options['data-color-scheme']); + + /* istanbul ignore if: IE lt 9 */ + if (style.styleSheet) { + style.styleSheet.cssText = cssText; + } else { + style.appendChild(root.ownerDocument.createTextNode(cssText)); + } + + var isLarge = toLowerCase(options['data-size']) === 'large'; + + var btn = createElement('a', { + className: 'btn', + href: options.href, + rel: 'noopener', + target: '_blank', + title: options.title || undefined, + 'aria-label': options['aria-label'] || undefined, + innerHTML: octicon(options['data-icon'], isLarge ? 16 : 14) + ' ' + }, [ + createElement('span', {}, [options['data-text'] || '']) + ]); + + var widget = root.appendChild(createElement('div', { + className: 'widget' + (isLarge ? ' widget-lg' : '') + }, [ + btn + ])); + + var hostname = btn.hostname.replace(/\.$/, ''); + if (('.' + hostname).substring(hostname.length - domain.length) !== ('.' + domain)) { + btn.removeAttribute('href'); + func(widget); + return + } + + var path = (' /' + btn.pathname).split(/\/+/); + if (((hostname === domain || hostname === 'gist.' + domain) && path[3] === 'archive') || + (hostname === domain && path[3] === 'releases' && (path[4] === 'download' || (path[4] === 'latest' && path[5] === 'download'))) || + (hostname === 'codeload.' + domain)) { + btn.target = '_top'; + } + + if (toLowerCase(options['data-show-count']) !== 'true' || + hostname !== domain || + path[1] === 'marketplace' || + path[1] === 'sponsors' || + path[1] === 'orgs' || + path[1] === 'users' || + path[1] === '-') { + func(widget); + return + } + + var href, property; + if (!path[2] && path[1]) { + property = 'followers'; + href = '?tab=followers'; + } else if (!path[3] && path[2]) { + property = 'stargazers_count'; + href = '/stargazers'; + } else if (!path[4] && path[3] === 'subscription') { + property = 'subscribers_count'; + href = '/watchers'; + } else if (!path[4] && path[3] === 'fork') { + property = 'forks_count'; + href = '/forks'; + } else if (path[3] === 'issues') { + property = 'open_issues_count'; + href = '/issues'; + } else { + func(widget); + return + } + + var api = path[2] ? '/repos/' + path[1] + '/' + path[2] : '/users/' + path[1]; + fetch.call(this, apiBaseURL + api, function (error, json) { + if (!error) { + var data = json[property]; + widget.appendChild(createElement('a', { + className: 'social-count', + href: json.html_url + href, + rel: 'noopener', + target: '_blank', + 'aria-label': data + ' ' + property.replace(/_count$/, '').replace('_', ' ').slice(0, data < 2 ? -1 : undefined) + ' on GitHub' + }, [ + ('' + data).replace(/\B(?=(\d{3})+(?!\d))/g, ',') + ])); + } + func(widget); + }); + }; + + var parseOptions = function (anchor) { + var options = { + href: anchor.href, + title: anchor.title, + 'aria-label': anchor.getAttribute('aria-label') + }; + + forEach(['icon', 'color-scheme', 'text', 'size', 'show-count'], function (option) { + var attribute = 'data-' + option; + options[attribute] = anchor.getAttribute(attribute); + }); + + if (options['data-text'] == null) { + options['data-text'] = anchor.textContent || anchor.innerText; + } + + return options + }; + + var devicePixelRatio = window.devicePixelRatio || /* istanbul ignore next */ 1; + + var ceilPixel = function (px) { + return (devicePixelRatio > 1 ? Math.ceil(Math.round(px * devicePixelRatio) / devicePixelRatio * 2) / 2 : Math.ceil(px)) || 0 + }; + + var get = function (el) { + var width = el.offsetWidth; + var height = el.offsetHeight; + if (el.getBoundingClientRect) { + var boundingClientRect = el.getBoundingClientRect(); + width = Math.max(width, ceilPixel(boundingClientRect.width)); + height = Math.max(height, ceilPixel(boundingClientRect.height)); + } + return [width, height] + }; + + var set = function (el, size) { + el.style.width = size[0] + 'px'; + el.style.height = size[1] + 'px'; + }; + + var render = function (options, func) { + if (options == null || func == null) { + return + } + if (options.getAttribute) { + options = parseOptions(options); + } + if (useShadowDOM) { + var host = createElement('span'); + render$1(host.attachShadow({ mode: 'closed' }), options, function () { + func(host); + }); + } else { + var iframe = createElement('iframe', { + src: 'javascript:0', + title: options.title || undefined, + allowtransparency: true, + scrolling: 'no', + frameBorder: 0 + }); + set(iframe, [0, 0]); + iframe.style.border = 'none'; + var callback = function () { + var contentWindow = iframe.contentWindow; + var body; + try { + body = contentWindow.document.body; + } catch (_) /* istanbul ignore next: IE 11 */ { + document.body.appendChild(iframe.parentNode.removeChild(iframe)); + return + } + offEvent(iframe, 'load', callback); + render$1.call(contentWindow, body, options, function (widget) { + var size = get(widget); + iframe.parentNode.removeChild(iframe); + onceEvent(iframe, 'load', function () { + set(iframe, size); + }); + iframe.src = iframeURL + '#' + (iframe.name = stringify(options)); + func(iframe); + }); + }; + onEvent(iframe, 'load', callback); + document.body.appendChild(iframe); + } + }; + + if (location.protocol + '//' + location.host + location.pathname === iframeURL) { + render$1(document.body, parse(window.name || location.hash.replace(/^#/, '')), function () {}); + } else { + defer(function () { + var anchors = document.querySelectorAll + ? document.querySelectorAll('a.' + buttonClass) + : (function () { + var results = []; + forEach(document.getElementsByTagName('a'), function (a) { + if ((' ' + a.className + ' ').replace(/[ \t\n\f\r]+/g, ' ').indexOf(' ' + buttonClass + ' ') !== -1) { + results.push(a); + } + }); + return results + })(); + forEach(anchors, function (anchor) { + render(anchor, function (el) { + anchor.parentNode.replaceChild(el, anchor); + }); + }); + }); + } + + window.githubButtons = { render: render }; +})(); diff --git a/exampleSite/test-hugo.bat b/docs/test-hugo.bat similarity index 84% rename from exampleSite/test-hugo.bat rename to docs/test-hugo.bat index 5d48e36a47..91ffb591af 100644 --- a/exampleSite/test-hugo.bat +++ b/docs/test-hugo.bat @@ -8,7 +8,7 @@ if not "%~1"=="" ( set hugo_version=.%1 ) -rem Relearn themes exampleSite +rem Relearn theme docs & exampleSite set "themeDir=.." if not exist "%themeDir%\layouts\partials\version.txt" ( rem other sites stored parallel to Relearn themes directory @@ -26,6 +26,7 @@ if not exist "%themeDir%\layouts\partials\version.txt" ( rem theme users with custom theme name set "themeDir=themes\relearn" ) + if not exist "%themeDir%\layouts\partials\version.txt" ( echo Relearn theme not found. set "version=" @@ -33,17 +34,18 @@ if not exist "%themeDir%\layouts\partials\version.txt" ( set /p version=<"%themeDir%\layouts\partials\version.txt" set "version=.!version!" ) + echo %version%>"metrics%version%%hugo_prefix%%hugo_version%.log" set config=--environment testing if exist "config\testing" ( - rem seems we are in the themes exampleSite, no need to copy anything + rem seems we are in the themes docs, no need to copy anything ) else if exist "config.toml" ( - set config=--config config.toml,%themeDir%\exampleSite\config\testing\hugo.toml + set config=--config config.toml,%themeDir%\docs\config\testing\hugo.toml ) else if exist "hugo.toml" ( - set config=--config hugo.toml,%themeDir%\exampleSite\config\testing\hugo.toml + set config=--config hugo.toml,%themeDir%\docs\config\testing\hugo.toml ) else if exist "config" ( - copy /e /i /y "%themeDir%\exampleSite\config\testing" "config\testing" + copy /e /i /y "%themeDir%\docs\config\testing" "config\testing" ) else if exist "hugo" ( copy /e /i /y "%themeDir%\config\testing" "hugo\testing" ) diff --git a/exampleSite/test-hugo.min.bat b/docs/test-hugo.min.bat similarity index 100% rename from exampleSite/test-hugo.min.bat rename to docs/test-hugo.min.bat diff --git a/exampleSite/content/introduction/changelog/2/9/004.en.md b/exampleSite/content/introduction/changelog/2/9/004.en.md deleted file mode 100644 index a71a9004e2..0000000000 --- a/exampleSite/content/introduction/changelog/2/9/004.en.md +++ /dev/null @@ -1,5 +0,0 @@ -## 2.9.4 (2022-02-06) - -### Fixes - -- [**bug**] exampleSite: fix links in official documentation [#168](https://github.com/McShelby/hugo-theme-relearn/issues/168) diff --git a/layouts/partials/version.txt b/layouts/partials/version.txt index 9c29833e67..90cd592ca2 100644 --- a/layouts/partials/version.txt +++ b/layouts/partials/version.txt @@ -1 +1 @@ -7.3.2+239ae4ed64e9976ba7071aa19f4e4f31904742d6 \ No newline at end of file +7.3.2+df03dac58f35146443feb48374912e266ca4b2b7 \ No newline at end of file