From a46251d600715b9ba49c18fd3c94908baa52f0e2 Mon Sep 17 00:00:00 2001 From: hybras <24651269+hybras@users.noreply.github.com> Date: Sun, 31 Dec 2023 09:41:03 -0500 Subject: [PATCH 01/10] nix flake --- .envrc | 11 ++++++++++ .gitignore | 1 + flake.lock | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ flake.nix | 22 ++++++++++++++++++++ 4 files changed, 95 insertions(+) create mode 100644 .envrc create mode 100644 flake.lock create mode 100644 flake.nix diff --git a/.envrc b/.envrc new file mode 100644 index 000000000..4a4a0d6c3 --- /dev/null +++ b/.envrc @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +layout go +layout ruby + +if [ -z "$CI" ]; then + # local development + use flake + export HUGO_CACHEDIR="${XDG_CACHE_HOME:-$TMPDIR}/hugo_cache" +fi + diff --git a/.gitignore b/.gitignore index e072c51fa..9d0cccb39 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ node_modules/ /nbproject/ /tmp/ +.direnv \ No newline at end of file diff --git a/flake.lock b/flake.lock new file mode 100644 index 000000000..7da232358 --- /dev/null +++ b/flake.lock @@ -0,0 +1,61 @@ +{ + "nodes": { + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1692799911, + "narHash": "sha256-3eihraek4qL744EvQXsK1Ha6C3CR7nnT8X2qWap4RNk=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "f9e7cf818399d17d347f847525c5a5a8032e4e44", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1703351344, + "narHash": "sha256-9FEelzftkE9UaJ5nqxidaJJPEhe9TPhbypLHmc2Mysc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "7790e078f8979a9fcd543f9a47427eeaba38f268", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-23.05", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "flake-utils": "flake-utils", + "nixpkgs": "nixpkgs" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/flake.nix b/flake.nix new file mode 100644 index 000000000..5bf716576 --- /dev/null +++ b/flake.nix @@ -0,0 +1,22 @@ +{ + description = "A Nix Environment for my website"; + + inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05"; + inputs.flake-utils.url = "github:numtide/flake-utils"; + + outputs = { self, nixpkgs, flake-utils }: + flake-utils.lib.eachDefaultSystem (system: + let pkgs = import nixpkgs { inherit system; }; in + { + devShells = { + default = pkgs.mkShell { + buildInputs = [ + pkgs.hugo + pkgs.asciidoctor-with-extensions + pkgs.go + pkgs.ruby + ]; + }; + }; + }); +} From 8112ac1d24aa62d5efbf3e779818a8380b5f8020 Mon Sep 17 00:00:00 2001 From: hybras <24651269+hybras@users.noreply.github.com> Date: Sun, 31 Dec 2023 09:41:36 -0500 Subject: [PATCH 02/10] ignore antora --- .vscode/settings.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..54db2c4f4 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "asciidoc.antora.enableAntoraSupport": false +} \ No newline at end of file From 1d918db9010768b73fefa69d8efa372b2e1f3e4a Mon Sep 17 00:00:00 2001 From: hybras <24651269+hybras@users.noreply.github.com> Date: Sun, 31 Dec 2023 09:43:48 -0500 Subject: [PATCH 03/10] ignore hugo build lockfile --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 9d0cccb39..be8a499bc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # hugo destination build public/ +.hugo_build.lock # Microsoft Visual Studio exclusions *.sln From 703b5581061567aa65efd8e257b81f06c17c2cf0 Mon Sep 17 00:00:00 2001 From: hybras <24651269+hybras@users.noreply.github.com> Date: Sun, 31 Dec 2023 09:49:54 -0500 Subject: [PATCH 04/10] Self close children shortcodes --- content/8.x/_index.en.adoc | 2 +- content/8.x/_index.ru.adoc | 2 +- content/8.x/admin/_index.en.adoc | 2 +- content/8.x/admin/_index.ru.adoc | 2 +- content/8.x/admin/configuration/_index.en.adoc | 2 +- content/8.x/admin/releases/_index.en.adoc | 2 +- content/8.x/developer/_index.en.adoc | 2 +- content/8.x/developer/architecture/_index.en.adoc | 2 +- content/8.x/developer/extensions/_index.en.adoc | 2 +- content/8.x/developer/extensions/backend/_index.en.adoc | 2 +- .../developer/extensions/backend/process-api/_index.en.adoc | 2 +- content/8.x/developer/extensions/frontend/_index.en.adoc | 2 +- .../developer/extensions/frontend/examples/_index.en.adoc | 2 +- .../8.x/developer/extensions/frontend/logic/_index.en.adoc | 2 +- .../extensions/frontend/logic/field-logic/_index.en.adoc | 2 +- .../extensions/frontend/logic/panel-logic/_index.en.adoc | 2 +- content/8.x/developer/installation-guide/_index.en.adoc | 2 +- content/8.x/features/_index.en.adoc | 2 +- content/admin/_index.en.adoc | 2 +- content/admin/_index.ru.adoc | 2 +- content/admin/administration-panel/Emails/_index.en.adoc | 2 +- content/admin/administration-panel/SSO/_index.en.adoc | 2 +- content/admin/administration-panel/_index.en.adoc | 2 +- content/admin/administration-panel/_index.ru.adoc | 2 +- content/admin/administration-panel/search/_index.adoc | 2 +- .../administration-panel/search/elasticsearch/_index.adoc | 2 +- .../search/elasticsearch/_index.ru.adoc | 2 +- content/admin/releases/_index.en.adoc | 2 +- content/admin/suitecrm-analytics/_index.en.adoc | 2 +- content/admin/suitecrm-analytics/_index.ru.adoc | 2 +- content/community/_index.en.adoc | 2 +- content/community/_index.ru.adoc | 2 +- content/community/contributing-code/_index.en.adoc | 2 +- content/community/contributing-code/_index.es.adoc | 2 +- content/community/contributing-to-docs/_index.en.adoc | 2 +- content/community/contributing-to-docs/_index.ru.adoc | 2 +- content/developer/Theme/SuitePIcons/_index.en.adoc | 2 +- content/developer/Theme/SuitePIconsFont/_index.en.adoc | 2 +- content/developer/Theme/_index.en.adoc | 2 +- content/developer/_index.en.adoc | 2 +- content/developer/_index.es.adoc | 2 +- content/developer/api/Developer-setup-guide/_index.en.adoc | 2 +- content/developer/api/_index.en.adoc | 2 +- content/developer/searchframework/_index.en.adoc | 2 +- content/user/_index.en.adoc | 2 +- content/user/_index.ru.adoc | 2 +- content/user/advanced-modules/_index.en.adoc | 2 +- content/user/advanced-modules/_index.ru.adoc | 2 +- content/user/core-modules/_index.en.adoc | 2 +- content/user/core-modules/_index.es.adoc | 2 +- content/user/core-modules/_index.ru.adoc | 2 +- content/user/introduction/User Interface/_index.adoc | 2 +- content/user/introduction/User Interface/_index.ru.adoc | 2 +- content/user/suitecrm-analytics/_index.en.adoc | 2 +- content/user/suitecrm-analytics/_index.ru.adoc | 2 +- .../exampleSite/content/shortcodes/children/_index.en.md | 6 +++--- .../exampleSite/content/shortcodes/children/_index.fr.md | 6 +++--- .../exampleSite/shortcodes/children/_index.en.md | 6 +++--- .../exampleSite/shortcodes/children/_index.fr.md | 6 +++--- 59 files changed, 67 insertions(+), 67 deletions(-) diff --git a/content/8.x/_index.en.adoc b/content/8.x/_index.en.adoc index 6df1820e2..655e0c635 100644 --- a/content/8.x/_index.en.adoc +++ b/content/8.x/_index.en.adoc @@ -5,6 +5,6 @@ pre: "5. " --- === Table of Contents -{{% children depth="3" showhidden="false" %}} +{{% children depth="3" showhidden="false" /%}} diff --git a/content/8.x/_index.ru.adoc b/content/8.x/_index.ru.adoc index 094c474fb..a6b82ea7d 100644 --- a/content/8.x/_index.ru.adoc +++ b/content/8.x/_index.ru.adoc @@ -8,6 +8,6 @@ pre: "5. " :email: likhobory@mail.ru === Оглавление -{{% children depth="3" showhidden="false" %}} +{{% children depth="3" showhidden="false" /%}} diff --git a/content/8.x/admin/_index.en.adoc b/content/8.x/admin/_index.en.adoc index 45868fa0f..b6fed290d 100644 --- a/content/8.x/admin/_index.en.adoc +++ b/content/8.x/admin/_index.en.adoc @@ -4,6 +4,6 @@ weight: 30 --- === Table of Contents -{{% children depth="2" showhidden="false" %}} +{{% children depth="2" showhidden="false" /%}} diff --git a/content/8.x/admin/_index.ru.adoc b/content/8.x/admin/_index.ru.adoc index 1c13e1e5e..02eab1816 100644 --- a/content/8.x/admin/_index.ru.adoc +++ b/content/8.x/admin/_index.ru.adoc @@ -7,4 +7,4 @@ Weight: 20 :email: likhobory@mail.ru === Оглавление -{{% children depth="3" showhidden="false" %}} +{{% children depth="3" showhidden="false" /%}} diff --git a/content/8.x/admin/configuration/_index.en.adoc b/content/8.x/admin/configuration/_index.en.adoc index 4c3f6aa30..652b87ddb 100644 --- a/content/8.x/admin/configuration/_index.en.adoc +++ b/content/8.x/admin/configuration/_index.en.adoc @@ -4,4 +4,4 @@ weight: 20 --- === Table of Contents -{{% children depth="4" showhidden="false" %}} +{{% children depth="4" showhidden="false" /%}} diff --git a/content/8.x/admin/releases/_index.en.adoc b/content/8.x/admin/releases/_index.en.adoc index 3ed5fbc91..3d3883613 100644 --- a/content/8.x/admin/releases/_index.en.adoc +++ b/content/8.x/admin/releases/_index.en.adoc @@ -3,7 +3,7 @@ title: "Releases" weight: 10000 --- -{{% children depth="1" %}} +{{% children depth="1" /%}} diff --git a/content/8.x/developer/_index.en.adoc b/content/8.x/developer/_index.en.adoc index ae8f9860c..01c22d00d 100644 --- a/content/8.x/developer/_index.en.adoc +++ b/content/8.x/developer/_index.en.adoc @@ -4,4 +4,4 @@ weight: 30 --- === Table of Contents -{{% children depth="2" showhidden="false" %}} \ No newline at end of file +{{% children depth="2" showhidden="false" /%}} \ No newline at end of file diff --git a/content/8.x/developer/architecture/_index.en.adoc b/content/8.x/developer/architecture/_index.en.adoc index 29a82e142..8919a3180 100644 --- a/content/8.x/developer/architecture/_index.en.adoc +++ b/content/8.x/developer/architecture/_index.en.adoc @@ -4,4 +4,4 @@ weight: 40 --- === Table of Contents -{{% children depth="3" showhidden="false" %}} +{{% children depth="3" showhidden="false" /%}} diff --git a/content/8.x/developer/extensions/_index.en.adoc b/content/8.x/developer/extensions/_index.en.adoc index 1d176cf45..1dad2b2da 100644 --- a/content/8.x/developer/extensions/_index.en.adoc +++ b/content/8.x/developer/extensions/_index.en.adoc @@ -4,4 +4,4 @@ weight: 20 --- === Table of Contents -{{% children depth="3" showhidden="false" %}} +{{% children depth="3" showhidden="false" /%}} diff --git a/content/8.x/developer/extensions/backend/_index.en.adoc b/content/8.x/developer/extensions/backend/_index.en.adoc index 01937d5e3..4150e3286 100644 --- a/content/8.x/developer/extensions/backend/_index.en.adoc +++ b/content/8.x/developer/extensions/backend/_index.en.adoc @@ -4,4 +4,4 @@ weight: 30 --- === Table of Contents -{{% children depth="3" showhidden="false" %}} +{{% children depth="3" showhidden="false" /%}} diff --git a/content/8.x/developer/extensions/backend/process-api/_index.en.adoc b/content/8.x/developer/extensions/backend/process-api/_index.en.adoc index 8eaf3f16c..951c455aa 100644 --- a/content/8.x/developer/extensions/backend/process-api/_index.en.adoc +++ b/content/8.x/developer/extensions/backend/process-api/_index.en.adoc @@ -4,4 +4,4 @@ weight: 30 --- === Table of Contents -{{% children depth="3" showhidden="false" %}} +{{% children depth="3" showhidden="false" /%}} diff --git a/content/8.x/developer/extensions/frontend/_index.en.adoc b/content/8.x/developer/extensions/frontend/_index.en.adoc index a240054ae..d6ccda310 100644 --- a/content/8.x/developer/extensions/frontend/_index.en.adoc +++ b/content/8.x/developer/extensions/frontend/_index.en.adoc @@ -4,4 +4,4 @@ weight: 30 --- === Table of Contents -{{% children depth="3" showhidden="false" %}} +{{% children depth="3" showhidden="false" /%}} diff --git a/content/8.x/developer/extensions/frontend/examples/_index.en.adoc b/content/8.x/developer/extensions/frontend/examples/_index.en.adoc index 983e0c81e..55f6d48ba 100644 --- a/content/8.x/developer/extensions/frontend/examples/_index.en.adoc +++ b/content/8.x/developer/extensions/frontend/examples/_index.en.adoc @@ -4,4 +4,4 @@ weight: 50 --- === Table of Contents -{{% children depth="3" showhidden="false" %}} +{{% children depth="3" showhidden="false" /%}} diff --git a/content/8.x/developer/extensions/frontend/logic/_index.en.adoc b/content/8.x/developer/extensions/frontend/logic/_index.en.adoc index 2cd23979f..3d04c3c10 100644 --- a/content/8.x/developer/extensions/frontend/logic/_index.en.adoc +++ b/content/8.x/developer/extensions/frontend/logic/_index.en.adoc @@ -4,4 +4,4 @@ weight: 50 --- === Table of Contents -{{% children depth="3" showhidden="false" %}} +{{% children depth="3" showhidden="false" /%}} diff --git a/content/8.x/developer/extensions/frontend/logic/field-logic/_index.en.adoc b/content/8.x/developer/extensions/frontend/logic/field-logic/_index.en.adoc index 8fd2c3880..4a22b3048 100644 --- a/content/8.x/developer/extensions/frontend/logic/field-logic/_index.en.adoc +++ b/content/8.x/developer/extensions/frontend/logic/field-logic/_index.en.adoc @@ -4,4 +4,4 @@ weight: 50 --- === Table of Contents -{{% children depth="3" showhidden="false" %}} +{{% children depth="3" showhidden="false" /%}} diff --git a/content/8.x/developer/extensions/frontend/logic/panel-logic/_index.en.adoc b/content/8.x/developer/extensions/frontend/logic/panel-logic/_index.en.adoc index 16e32836e..d6d3807b7 100644 --- a/content/8.x/developer/extensions/frontend/logic/panel-logic/_index.en.adoc +++ b/content/8.x/developer/extensions/frontend/logic/panel-logic/_index.en.adoc @@ -4,4 +4,4 @@ weight: 50 --- === Table of Contents -{{% children depth="3" showhidden="false" %}} +{{% children depth="3" showhidden="false" /%}} diff --git a/content/8.x/developer/installation-guide/_index.en.adoc b/content/8.x/developer/installation-guide/_index.en.adoc index b270e49be..64b8147d9 100644 --- a/content/8.x/developer/installation-guide/_index.en.adoc +++ b/content/8.x/developer/installation-guide/_index.en.adoc @@ -12,5 +12,5 @@ The following documentation is for SuiteCRM Version 8+; to see documentation for Please consider going through the link:../developer-getting-started[Developer Getting started] guide. It may simplify part of the process described on the guides listed next. == Table of Contents -{{% children depth="3" showhidden="false" %}} +{{% children depth="3" showhidden="false" /%}} diff --git a/content/8.x/features/_index.en.adoc b/content/8.x/features/_index.en.adoc index c149e93bb..2c8c7d42d 100644 --- a/content/8.x/features/_index.en.adoc +++ b/content/8.x/features/_index.en.adoc @@ -4,4 +4,4 @@ weight: 10 --- === Table of Contents -{{% children depth="2" showhidden="false" %}} +{{% children depth="2" showhidden="false" /%}} diff --git a/content/admin/_index.en.adoc b/content/admin/_index.en.adoc index 5413388b3..5780ef710 100644 --- a/content/admin/_index.en.adoc +++ b/content/admin/_index.en.adoc @@ -5,6 +5,6 @@ pre: "3. " --- === Table of Contents -{{% children depth="2" showhidden="false" showhidden="true" %}} +{{% children depth="2" showhidden="false" showhidden="true" /%}} diff --git a/content/admin/_index.ru.adoc b/content/admin/_index.ru.adoc index b73ab62eb..a60e6933a 100644 --- a/content/admin/_index.ru.adoc +++ b/content/admin/_index.ru.adoc @@ -8,4 +8,4 @@ pre: "2. " :email: likhobory@mail.ru === Оглавление -{{% children depth="3" showhidden="false" %}} +{{% children depth="3" showhidden="false" /%}} diff --git a/content/admin/administration-panel/Emails/_index.en.adoc b/content/admin/administration-panel/Emails/_index.en.adoc index 1d569537f..722c6ab41 100644 --- a/content/admin/administration-panel/Emails/_index.en.adoc +++ b/content/admin/administration-panel/Emails/_index.en.adoc @@ -4,4 +4,4 @@ weight: 10 --- === Table of Contents -{{% children depth="3" showhidden="true" %}} +{{% children depth="3" showhidden="true" /%}} diff --git a/content/admin/administration-panel/SSO/_index.en.adoc b/content/admin/administration-panel/SSO/_index.en.adoc index 362f25457..0e05f6250 100644 --- a/content/admin/administration-panel/SSO/_index.en.adoc +++ b/content/admin/administration-panel/SSO/_index.en.adoc @@ -4,4 +4,4 @@ weight: 60 --- === Table of Contents -{{% children depth="3" showhidden="true" %}} +{{% children depth="3" showhidden="true" /%}} diff --git a/content/admin/administration-panel/_index.en.adoc b/content/admin/administration-panel/_index.en.adoc index 36d60a124..6455e42a5 100644 --- a/content/admin/administration-panel/_index.en.adoc +++ b/content/admin/administration-panel/_index.en.adoc @@ -4,4 +4,4 @@ weight: 10 --- === Table of Contents -{{% children depth="3" showhidden="true" %}} +{{% children depth="3" showhidden="true" /%}} diff --git a/content/admin/administration-panel/_index.ru.adoc b/content/admin/administration-panel/_index.ru.adoc index fa05628b0..e1cc92d0b 100644 --- a/content/admin/administration-panel/_index.ru.adoc +++ b/content/admin/administration-panel/_index.ru.adoc @@ -7,4 +7,4 @@ Weight: 11 :email: likhobory@mail.ru === Оглавление -{{% children depth="3" showhidden="false" %}} \ No newline at end of file +{{% children depth="3" showhidden="false" /%}} \ No newline at end of file diff --git a/content/admin/administration-panel/search/_index.adoc b/content/admin/administration-panel/search/_index.adoc index 4b3dda43c..92de3294b 100644 --- a/content/admin/administration-panel/search/_index.adoc +++ b/content/admin/administration-panel/search/_index.adoc @@ -4,4 +4,4 @@ weight: 50 --- === Table of Contents -{{% children depth="3" showhidden="true" %}} \ No newline at end of file +{{% children depth="3" showhidden="true" /%}} \ No newline at end of file diff --git a/content/admin/administration-panel/search/elasticsearch/_index.adoc b/content/admin/administration-panel/search/elasticsearch/_index.adoc index dc0bac84d..ee5cd184e 100644 --- a/content/admin/administration-panel/search/elasticsearch/_index.adoc +++ b/content/admin/administration-panel/search/elasticsearch/_index.adoc @@ -8,4 +8,4 @@ This enhancement is only available in SuiteCRM from version 7.11 onwards. {{% /notice %}} == Table of Contents -{{% children depth="3" showhidden="true" %}} +{{% children depth="3" showhidden="true" /%}} diff --git a/content/admin/administration-panel/search/elasticsearch/_index.ru.adoc b/content/admin/administration-panel/search/elasticsearch/_index.ru.adoc index 68053f036..ddb5fff7e 100644 --- a/content/admin/administration-panel/search/elasticsearch/_index.ru.adoc +++ b/content/admin/administration-panel/search/elasticsearch/_index.ru.adoc @@ -11,4 +11,4 @@ Weight: 10 {{% /notice %}} == Содержание -{{% children depth="3" showhidden="true" %}} \ No newline at end of file +{{% children depth="3" showhidden="true" /%}} \ No newline at end of file diff --git a/content/admin/releases/_index.en.adoc b/content/admin/releases/_index.en.adoc index 3ed5fbc91..3d3883613 100644 --- a/content/admin/releases/_index.en.adoc +++ b/content/admin/releases/_index.en.adoc @@ -3,7 +3,7 @@ title: "Releases" weight: 10000 --- -{{% children depth="1" %}} +{{% children depth="1" /%}} diff --git a/content/admin/suitecrm-analytics/_index.en.adoc b/content/admin/suitecrm-analytics/_index.en.adoc index f2e21febd..4aaea9d76 100644 --- a/content/admin/suitecrm-analytics/_index.en.adoc +++ b/content/admin/suitecrm-analytics/_index.en.adoc @@ -12,7 +12,7 @@ free-to-download solution which was built using Pentaho BI Suite Community Editi SuiteCRM users the ability to launch, administrate and customise their own BI platform and is completely extendable. SuiteCRM Analytics is comprised of two major components: -{{% children depth="4" showhidden="true" %}} +{{% children depth="4" showhidden="true" /%}} diff --git a/content/admin/suitecrm-analytics/_index.ru.adoc b/content/admin/suitecrm-analytics/_index.ru.adoc index eb2bb2368..c37157e0e 100644 --- a/content/admin/suitecrm-analytics/_index.ru.adoc +++ b/content/admin/suitecrm-analytics/_index.ru.adoc @@ -16,7 +16,7 @@ SuiteCRM Analytics - это полностью открытое и беспла Для работы с платформой бизнес-аналитики необходимо настроить следующие компоненты: -{{% children depth="4" showhidden="true" %}} +{{% children depth="4" showhidden="true" /%}} diff --git a/content/community/_index.en.adoc b/content/community/_index.en.adoc index 04ac3057e..54117a769 100644 --- a/content/community/_index.en.adoc +++ b/content/community/_index.en.adoc @@ -6,7 +6,7 @@ pre: "4. " --- === Table of Contents -{{% children depth="3" showhidden="true" %}} +{{% children depth="3" showhidden="true" /%}} diff --git a/content/community/_index.ru.adoc b/content/community/_index.ru.adoc index 73356c118..fba94c513 100644 --- a/content/community/_index.ru.adoc +++ b/content/community/_index.ru.adoc @@ -9,7 +9,7 @@ pre: "3. " :email: likhobory@mail.ru === Содержание -{{% children depth="3" showhidden="true" %}} +{{% children depth="3" showhidden="true" /%}} diff --git a/content/community/contributing-code/_index.en.adoc b/content/community/contributing-code/_index.en.adoc index 20c775f1c..b43c753dc 100644 --- a/content/community/contributing-code/_index.en.adoc +++ b/content/community/contributing-code/_index.en.adoc @@ -11,7 +11,7 @@ a graduate seeking a new project to dabble in, or a veteran developer – all are welcome to maintain our title of the world’s best open source CRM! === Table of Contents -{{% children depth="3" showhidden="true" %}} +{{% children depth="3" showhidden="true" /%}} diff --git a/content/community/contributing-code/_index.es.adoc b/content/community/contributing-code/_index.es.adoc index 20c775f1c..b43c753dc 100644 --- a/content/community/contributing-code/_index.es.adoc +++ b/content/community/contributing-code/_index.es.adoc @@ -11,7 +11,7 @@ a graduate seeking a new project to dabble in, or a veteran developer – all are welcome to maintain our title of the world’s best open source CRM! === Table of Contents -{{% children depth="3" showhidden="true" %}} +{{% children depth="3" showhidden="true" /%}} diff --git a/content/community/contributing-to-docs/_index.en.adoc b/content/community/contributing-to-docs/_index.en.adoc index 921c769be..19fd34f8a 100644 --- a/content/community/contributing-to-docs/_index.en.adoc +++ b/content/community/contributing-to-docs/_index.en.adoc @@ -6,7 +6,7 @@ chapter: true == Contributing to the Documentation -{{% children depth="3" showhidden="false" %}} +{{% children depth="3" showhidden="false" /%}} diff --git a/content/community/contributing-to-docs/_index.ru.adoc b/content/community/contributing-to-docs/_index.ru.adoc index 00e25c06d..c3e68606b 100644 --- a/content/community/contributing-to-docs/_index.ru.adoc +++ b/content/community/contributing-to-docs/_index.ru.adoc @@ -9,7 +9,7 @@ chapter: true == Вклад в создание документации -{{% children depth="3" showhidden="false" %}} +{{% children depth="3" showhidden="false" /%}} diff --git a/content/developer/Theme/SuitePIcons/_index.en.adoc b/content/developer/Theme/SuitePIcons/_index.en.adoc index 94cf7572e..c03d92c4c 100644 --- a/content/developer/Theme/SuitePIcons/_index.en.adoc +++ b/content/developer/Theme/SuitePIcons/_index.en.adoc @@ -4,5 +4,5 @@ weight: 20 --- === Table of Contents -{{% children depth="2" showhidden="false" %}} +{{% children depth="2" showhidden="false" /%}} diff --git a/content/developer/Theme/SuitePIconsFont/_index.en.adoc b/content/developer/Theme/SuitePIconsFont/_index.en.adoc index 3f29d0e83..d57d25fea 100644 --- a/content/developer/Theme/SuitePIconsFont/_index.en.adoc +++ b/content/developer/Theme/SuitePIconsFont/_index.en.adoc @@ -4,5 +4,5 @@ weight: 20 --- === Table of Contents -{{% children depth="3" showhidden="false" %}} +{{% children depth="3" showhidden="false" /%}} diff --git a/content/developer/Theme/_index.en.adoc b/content/developer/Theme/_index.en.adoc index 651ae29f5..260453e8f 100644 --- a/content/developer/Theme/_index.en.adoc +++ b/content/developer/Theme/_index.en.adoc @@ -4,4 +4,4 @@ weight: 15 --- === Table of Contents -{{% children depth="2" showhidden="false" %}} +{{% children depth="2" showhidden="false" /%}} diff --git a/content/developer/_index.en.adoc b/content/developer/_index.en.adoc index 4baf966f2..e79ec0950 100644 --- a/content/developer/_index.en.adoc +++ b/content/developer/_index.en.adoc @@ -5,4 +5,4 @@ pre: "2. " --- === Table of Contents -{{% children depth="4" showhidden="false" %}} +{{% children depth="4" showhidden="false" /%}} diff --git a/content/developer/_index.es.adoc b/content/developer/_index.es.adoc index f8170ca56..a09889f19 100644 --- a/content/developer/_index.es.adoc +++ b/content/developer/_index.es.adoc @@ -6,4 +6,4 @@ pre: "2. " === Contenidos -{{% children depth="4" showhidden="false" %}} +{{% children depth="4" showhidden="false" /%}} diff --git a/content/developer/api/Developer-setup-guide/_index.en.adoc b/content/developer/api/Developer-setup-guide/_index.en.adoc index 76baa37e1..463e5fff4 100644 --- a/content/developer/api/Developer-setup-guide/_index.en.adoc +++ b/content/developer/api/Developer-setup-guide/_index.en.adoc @@ -4,4 +4,4 @@ weight: --- === Table of Contents -{{% children depth="4" showhidden="false" %}} +{{% children depth="4" showhidden="false" /%}} diff --git a/content/developer/api/_index.en.adoc b/content/developer/api/_index.en.adoc index a4099ca51..8b2308a82 100644 --- a/content/developer/api/_index.en.adoc +++ b/content/developer/api/_index.en.adoc @@ -4,4 +4,4 @@ weight: 16 --- === Table of Contents -{{% children depth="3" showhidden="true" %}} \ No newline at end of file +{{% children depth="3" showhidden="true" /%}} \ No newline at end of file diff --git a/content/developer/searchframework/_index.en.adoc b/content/developer/searchframework/_index.en.adoc index 8d32627a1..70cfcd819 100644 --- a/content/developer/searchframework/_index.en.adoc +++ b/content/developer/searchframework/_index.en.adoc @@ -4,4 +4,4 @@ weight: 18 --- === Table of Contents -{{% children depth="4" showhidden="false" %}} +{{% children depth="4" showhidden="false" /%}} diff --git a/content/user/_index.en.adoc b/content/user/_index.en.adoc index 816c6f7cc..3c57718dd 100644 --- a/content/user/_index.en.adoc +++ b/content/user/_index.en.adoc @@ -5,4 +5,4 @@ pre: "1. " --- === Table of Contents -{{% children depth="3" showhidden="false" %}} +{{% children depth="3" showhidden="false" /%}} diff --git a/content/user/_index.ru.adoc b/content/user/_index.ru.adoc index 57fb9f4d6..393cdcdd6 100644 --- a/content/user/_index.ru.adoc +++ b/content/user/_index.ru.adoc @@ -8,4 +8,4 @@ pre: "1. " :email: likhobory@mail.ru === Оглавление -{{% children depth="3" showhidden="false" %}} +{{% children depth="3" showhidden="false" /%}} diff --git a/content/user/advanced-modules/_index.en.adoc b/content/user/advanced-modules/_index.en.adoc index 394145e51..9d556bcb2 100644 --- a/content/user/advanced-modules/_index.en.adoc +++ b/content/user/advanced-modules/_index.en.adoc @@ -4,4 +4,4 @@ weight: 70 --- === Table of Contents -{{% children depth="3" showhidden="true" %}} \ No newline at end of file +{{% children depth="3" showhidden="true" /%}} \ No newline at end of file diff --git a/content/user/advanced-modules/_index.ru.adoc b/content/user/advanced-modules/_index.ru.adoc index 6b236d4c7..99b0a01cf 100644 --- a/content/user/advanced-modules/_index.ru.adoc +++ b/content/user/advanced-modules/_index.ru.adoc @@ -7,4 +7,4 @@ Weight: 70 :email: likhobory@mail.ru === Оглавление -{{% children depth="3" showhidden="true" %}} \ No newline at end of file +{{% children depth="3" showhidden="true" /%}} \ No newline at end of file diff --git a/content/user/core-modules/_index.en.adoc b/content/user/core-modules/_index.en.adoc index a22d96dfb..6052764aa 100644 --- a/content/user/core-modules/_index.en.adoc +++ b/content/user/core-modules/_index.en.adoc @@ -7,4 +7,4 @@ chapter: true == Core Modules === Table of Contents -{{% children depth="3" showhidden="true" %}} \ No newline at end of file +{{% children depth="3" showhidden="true" /%}} \ No newline at end of file diff --git a/content/user/core-modules/_index.es.adoc b/content/user/core-modules/_index.es.adoc index 26f3287fc..9d130bf6c 100644 --- a/content/user/core-modules/_index.es.adoc +++ b/content/user/core-modules/_index.es.adoc @@ -7,4 +7,4 @@ chapter: true == Módulos Centrales === Table of Contents -{{% children depth="3" showhidden="true" %}} \ No newline at end of file +{{% children depth="3" showhidden="true" /%}} \ No newline at end of file diff --git a/content/user/core-modules/_index.ru.adoc b/content/user/core-modules/_index.ru.adoc index f5f6e96d9..f6133cc6b 100644 --- a/content/user/core-modules/_index.ru.adoc +++ b/content/user/core-modules/_index.ru.adoc @@ -10,4 +10,4 @@ chapter: true == Основные модули === Оглавление -{{% children depth="3" showhidden="true" %}} \ No newline at end of file +{{% children depth="3" showhidden="true" /%}} \ No newline at end of file diff --git a/content/user/introduction/User Interface/_index.adoc b/content/user/introduction/User Interface/_index.adoc index 1bddab08d..6288515b3 100644 --- a/content/user/introduction/User Interface/_index.adoc +++ b/content/user/introduction/User Interface/_index.adoc @@ -5,4 +5,4 @@ Weight: 50 == Table of Contents -{{% children depth="4" showhidden="true" %}} +{{% children depth="4" showhidden="true" /%}} diff --git a/content/user/introduction/User Interface/_index.ru.adoc b/content/user/introduction/User Interface/_index.ru.adoc index 93af21701..1cbc361ad 100644 --- a/content/user/introduction/User Interface/_index.ru.adoc +++ b/content/user/introduction/User Interface/_index.ru.adoc @@ -8,4 +8,4 @@ chapter: true :email: likhobory@mail.ru == Оглавление -{{% children depth="4" showhidden="false" %}} \ No newline at end of file +{{% children depth="4" showhidden="false" /%}} \ No newline at end of file diff --git a/content/user/suitecrm-analytics/_index.en.adoc b/content/user/suitecrm-analytics/_index.en.adoc index b01186a0b..09994fcfa 100644 --- a/content/user/suitecrm-analytics/_index.en.adoc +++ b/content/user/suitecrm-analytics/_index.en.adoc @@ -17,7 +17,7 @@ completely extendable. SuiteCRM Analytics is comprised of two major components: == Table of Contents -{{% children depth="4" showhidden="true" %}} +{{% children depth="4" showhidden="true" /%}} diff --git a/content/user/suitecrm-analytics/_index.ru.adoc b/content/user/suitecrm-analytics/_index.ru.adoc index f41fd87cd..9e20a92cf 100644 --- a/content/user/suitecrm-analytics/_index.ru.adoc +++ b/content/user/suitecrm-analytics/_index.ru.adoc @@ -17,5 +17,5 @@ https://ru.wikipedia.org/wiki/Business_Intelligence[BI^]-платформу. == Оглавление -{{% children depth="4" showhidden="true" %}} +{{% children depth="4" showhidden="true" /%}} diff --git a/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/_index.en.md b/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/_index.en.md index 0178536fa..fb3303669 100644 --- a/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/_index.en.md +++ b/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/_index.en.md @@ -28,15 +28,15 @@ Use the children shortcode to list the child pages of a page and the further des {{%/* children depth="3" showhidden="true" */%}} -{{% children depth="3" showhidden="true" %}} +{{% children depth="3" showhidden="true" /%}} {{%/* children style="h2" depth="3" description="true" */%}} -{{% children style="h2" depth="3" description="true" %}} +{{% children style="h2" depth="3" description="true" /%}} {{%/* children style="div" depth="999" */%}} -{{% children style="div" depth="999" %}} +{{% children style="div" depth="999" /%}} diff --git a/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/_index.fr.md b/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/_index.fr.md index 672c5ad61..3a2a9bb11 100644 --- a/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/_index.fr.md +++ b/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/_index.fr.md @@ -28,15 +28,15 @@ Utilisez le shortcode *children* pour lister les pages filles de la page et tous {{%/* children depth="3" showhidden="true" */%}} -{{% children depth="3" showhidden="true" %}} +{{% children depth="3" showhidden="true" /%}} {{%/* children style="h2" depth="3" description="true" */%}} -{{% children style="h2" depth="3" description="true" %}} +{{% children style="h2" depth="3" description="true" /%}} {{%/* children style="div" depth="999" */%}} -{{% children style="div" depth="999" %}} +{{% children style="div" depth="999" /%}} diff --git a/themes/hugo-theme-learn/exampleSite/shortcodes/children/_index.en.md b/themes/hugo-theme-learn/exampleSite/shortcodes/children/_index.en.md index 5d6139b7a..906fcc15e 100644 --- a/themes/hugo-theme-learn/exampleSite/shortcodes/children/_index.en.md +++ b/themes/hugo-theme-learn/exampleSite/shortcodes/children/_index.en.md @@ -28,15 +28,15 @@ Use the children shortcode to list the child pages of a page and the further des {{%/* children depth="3" showhidden="true" */%}} -{{% children depth="3" showhidden="true" %}} +{{% children depth="3" showhidden="true" /%}} {{%/* children style="h2" depth="3" description="true" */%}} -{{% children style="h2" depth="3" description="true" %}} +{{% children style="h2" depth="3" description="true" /%}} {{%/* children style="div" depth="999" */%}} -{{% children style="div" depth="999" %}} +{{% children style="div" depth="999" /%}} diff --git a/themes/hugo-theme-learn/exampleSite/shortcodes/children/_index.fr.md b/themes/hugo-theme-learn/exampleSite/shortcodes/children/_index.fr.md index 672c5ad61..3a2a9bb11 100644 --- a/themes/hugo-theme-learn/exampleSite/shortcodes/children/_index.fr.md +++ b/themes/hugo-theme-learn/exampleSite/shortcodes/children/_index.fr.md @@ -28,15 +28,15 @@ Utilisez le shortcode *children* pour lister les pages filles de la page et tous {{%/* children depth="3" showhidden="true" */%}} -{{% children depth="3" showhidden="true" %}} +{{% children depth="3" showhidden="true" /%}} {{%/* children style="h2" depth="3" description="true" */%}} -{{% children style="h2" depth="3" description="true" %}} +{{% children style="h2" depth="3" description="true" /%}} {{%/* children style="div" depth="999" */%}} -{{% children style="div" depth="999" %}} +{{% children style="div" depth="999" /%}} From 627060215e5670acbd32ca6aa5fb8cb4a62dd7c5 Mon Sep 17 00:00:00 2001 From: hybras <24651269+hybras@users.noreply.github.com> Date: Sun, 31 Dec 2023 09:50:31 -0500 Subject: [PATCH 05/10] Rename hugo config --- config.toml => hugo.toml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename config.toml => hugo.toml (100%) diff --git a/config.toml b/hugo.toml similarity index 100% rename from config.toml rename to hugo.toml From b9e07621547bfa5851d6f5ec59d912cad02c7051 Mon Sep 17 00:00:00 2001 From: hybras <24651269+hybras@users.noreply.github.com> Date: Sun, 31 Dec 2023 09:51:27 -0500 Subject: [PATCH 06/10] Fix timeout setting --- hugo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hugo.toml b/hugo.toml index 081da9338..ac5e4d7e4 100644 --- a/hugo.toml +++ b/hugo.toml @@ -7,7 +7,7 @@ theme = "hugo-theme-learn" metaDataFormat = "yaml" defaultContentLanguageInSubdir= false enableGitInfo = true -timeout = 37000 +timeout = "37000s" ignoreErrors = ["error-remote-getjson"] [params] From da3ff093464b7514881b23b39e9ecaadb0c15424 Mon Sep 17 00:00:00 2001 From: hybras <24651269+hybras@users.noreply.github.com> Date: Sun, 31 Dec 2023 10:13:32 -0500 Subject: [PATCH 07/10] Rename usages of url to permalink --- layouts/_default/taxonomy.html | 30 ++++++++++++++------------- layouts/blog/list.html | 19 +++++++++-------- layouts/partials/last-blog-posts.html | 8 +++---- 3 files changed, 30 insertions(+), 27 deletions(-) diff --git a/layouts/_default/taxonomy.html b/layouts/_default/taxonomy.html index a2787f6da..696c60689 100644 --- a/layouts/_default/taxonomy.html +++ b/layouts/_default/taxonomy.html @@ -2,25 +2,27 @@ {{ range .Data.Pages }} -
- {{ if .Params.Author }}By {{ .Params.Author }} | {{ end }}{{ .Date.Format "January 2, 2006" }}{{ partial "tags.html" . }} -
++ {{ if .Params.Author }}By {{ .Params.Author }} | {{ end }}{{ .Date.Format "January 2, 2006" }}{{ partial "tags.html" . + }} +
- {{ .Summary }} +{{ .Summary }} - {{ if .Truncated }} - - {{ end }} +{{ if .Truncated }} + +{{ end }} {{ end }} -