mirror of
https://github.com/gethinode/hinode.git
synced 2025-10-17 06:53:11 +00:00
Compare commits
40 Commits
v1.0.0-alp
...
v1.0.0-bet
Author | SHA1 | Date | |
---|---|---|---|
![]() |
a44b5449f8 | ||
![]() |
461f53c67e | ||
![]() |
9a5059d8bd | ||
![]() |
c1586ee00e | ||
![]() |
88d2a50954 | ||
![]() |
77aa394c8e | ||
![]() |
5d4147fea9 | ||
![]() |
9c1d84487d | ||
![]() |
944a9705d7 | ||
![]() |
5e274d952a | ||
![]() |
a7f2d6d003 | ||
![]() |
057ae25f7b | ||
![]() |
a6454e3b4e | ||
![]() |
4b8f59782a | ||
![]() |
777c4f671f | ||
![]() |
990a016434 | ||
![]() |
1e64f4f009 | ||
![]() |
8bd3f0a254 | ||
![]() |
d6b3aaeb99 | ||
![]() |
e2e351f964 | ||
![]() |
b711d0591d | ||
![]() |
7a76408876 | ||
![]() |
1a53fdc636 | ||
![]() |
81f60a28e1 | ||
![]() |
193edecd03 | ||
![]() |
9ed4d00d19 | ||
![]() |
e821670be9 | ||
![]() |
7f7c8d12d9 | ||
![]() |
450e065117 | ||
![]() |
1360a750a5 | ||
![]() |
e7bb3ba1ca | ||
![]() |
5121c1cf1c | ||
![]() |
50bf5fa168 | ||
![]() |
363fcc3788 | ||
![]() |
d2e2b424b8 | ||
![]() |
859140e92f | ||
![]() |
38ef1bbbfe | ||
![]() |
508da2ba2b | ||
![]() |
529301ec8b | ||
![]() |
91acdeca75 |
@@ -18,23 +18,13 @@ a:active {
|
|||||||
// Ensure main page is rendered to full viewport height
|
// Ensure main page is rendered to full viewport height
|
||||||
//
|
//
|
||||||
.main {
|
.main {
|
||||||
min-height: 100vh;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fullcover {
|
|
||||||
--navbar-height: #{$navbar-height};
|
--navbar-height: #{$navbar-height};
|
||||||
|
|
||||||
min-height: calc(100vh - var(--navbar-height));
|
|
||||||
}
|
|
||||||
|
|
||||||
.fullscreen {
|
|
||||||
--overlay-offset: #{$overlay-offset};
|
--overlay-offset: #{$overlay-offset};
|
||||||
|
--section-height: 88vh;
|
||||||
|
--max-section-height: 1024px;
|
||||||
|
|
||||||
min-height: calc(100vh - var(--overlay-offset));
|
min-height: 100vh;
|
||||||
}
|
margin-top: var(--overlay-offset);
|
||||||
|
|
||||||
.main-content {
|
|
||||||
margin-top: var(--navbar-offset);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$utilities: map-merge(
|
$utilities: map-merge(
|
||||||
@@ -100,66 +90,24 @@ $utilities: map-merge(
|
|||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
@media screen and (orientation: portrait) {
|
|
||||||
.min-vh-custom {
|
|
||||||
min-height: 25vh !important
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (orientation: landscape) {
|
|
||||||
.min-vh-custom {
|
|
||||||
min-height: 50vh !important
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--nav-height: 90px;
|
--nav-height: 90px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include media-breakpoint-up(sm) {
|
|
||||||
.ratio-section {
|
|
||||||
min-height: calc(min(100vh, 576px) - var(--nav-height));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@include media-breakpoint-up(md) {
|
|
||||||
.ratio-section {
|
|
||||||
min-height: calc(min(100vh, 768px) - var(--nav-height));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@include media-breakpoint-up(lg) {
|
|
||||||
.ratio-section {
|
|
||||||
min-height: calc(min(100vh, 992px) - var(--nav-height));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@include media-breakpoint-up(xl) {
|
|
||||||
.ratio-section {
|
|
||||||
min-height: calc(min(100vh, 1200px) - var(--nav-height));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@include media-breakpoint-up(xxl) {
|
|
||||||
.ratio-section {
|
|
||||||
min-height: calc(min(100vh, 1400px) - var(--nav-height));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.section-cover {
|
.section-cover {
|
||||||
min-height: 100vh;
|
min-height: calc(var(--section-height) - var(--overlay-offset));
|
||||||
}
|
}
|
||||||
|
|
||||||
@include media-breakpoint-up(xxl) {
|
@include media-breakpoint-up(xxl) {
|
||||||
.section-cover {
|
.section-cover {
|
||||||
min-height: calc(min(100vh, 1000px));
|
min-height: calc(min(calc(var(--section-height) - var(--overlay-offset)), var(--max-section-height)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* stylelint-disable media-feature-range-notation */
|
/* stylelint-disable media-feature-range-notation */
|
||||||
@media (min-height: 1400px) {
|
@media (min-height: 1400px) {
|
||||||
.section-cover {
|
.section-cover {
|
||||||
min-height: calc(min(100vh, 1000px));
|
min-height: calc(min(calc(var(--section-height) - var(--overlay-offset)), var(--max-section-height)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* stylelint-enable media-feature-range-notation */
|
/* stylelint-enable media-feature-range-notation */
|
||||||
|
@@ -69,3 +69,8 @@ $theme-colors: (
|
|||||||
"body": $body-bg,
|
"body": $body-bg,
|
||||||
"body-tertiary": $gray-100,
|
"body-tertiary": $gray-100,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
$btn-padding-y-xs: .08rem !default;
|
||||||
|
$btn-padding-x-xs: 0.3rem !default;
|
||||||
|
$btn-font-size-xs: $font-size-base * .6 !default;
|
||||||
|
$btn-border-radius-xs: .2rem !default;
|
||||||
|
@@ -64,3 +64,8 @@ $theme-colors: (
|
|||||||
"body": $body-bg,
|
"body": $body-bg,
|
||||||
"body-tertiary": $gray-100,
|
"body-tertiary": $gray-100,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
$btn-padding-y-xs: .08rem !default;
|
||||||
|
$btn-padding-x-xs: 0.3rem !default;
|
||||||
|
$btn-font-size-xs: $font-size-base * .6 !default;
|
||||||
|
$btn-border-radius-xs: .2rem !default;
|
||||||
|
@@ -48,3 +48,7 @@ a.btn {
|
|||||||
|
|
||||||
margin: 0 !important;
|
margin: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn-xs {
|
||||||
|
@include button-size($btn-padding-y-xs, $btn-padding-x-xs, $btn-font-size-xs, $btn-border-radius-xs);
|
||||||
|
}
|
||||||
|
@@ -116,7 +116,7 @@ home = ["HTML", "RSS", "REDIR", "netlify", "server"]
|
|||||||
[module]
|
[module]
|
||||||
[module.hugoVersion]
|
[module.hugoVersion]
|
||||||
extended = true
|
extended = true
|
||||||
min = "0.141.0"
|
min = "0.146.0"
|
||||||
[[module.mounts]]
|
[[module.mounts]]
|
||||||
source = "archetypes"
|
source = "archetypes"
|
||||||
target = "archetypes"
|
target = "archetypes"
|
||||||
@@ -188,11 +188,11 @@ home = ["HTML", "RSS", "REDIR", "netlify", "server"]
|
|||||||
[[module.imports]]
|
[[module.imports]]
|
||||||
path = "github.com/gethinode/mod-lottie"
|
path = "github.com/gethinode/mod-lottie"
|
||||||
[[module.imports]]
|
[[module.imports]]
|
||||||
path = "github.com/gethinode/mod-mermaid"
|
path = "github.com/gethinode/mod-mermaid/v2"
|
||||||
[[module.imports]]
|
[[module.imports]]
|
||||||
path = "github.com/gethinode/mod-simple-datatables"
|
path = "github.com/gethinode/mod-simple-datatables/v2"
|
||||||
[[module.imports]]
|
[[module.imports]]
|
||||||
path = "github.com/gethinode/mod-utils/v3"
|
path = "github.com/gethinode/mod-utils/v4"
|
||||||
# toml-docs-end modules
|
# toml-docs-end modules
|
||||||
|
|
||||||
# toml-docs-start segments
|
# toml-docs-start segments
|
||||||
|
@@ -30,7 +30,7 @@ const purgecss = purgeCSSPlugin({
|
|||||||
'./_vendor/github.com/gethinode/mod-flexsearch/v2/assets/scss/modules/flexsearch/flexsearch.scss',
|
'./_vendor/github.com/gethinode/mod-flexsearch/v2/assets/scss/modules/flexsearch/flexsearch.scss',
|
||||||
'./_vendor/github.com/gethinode/mod-katex/dist/katex.scss',
|
'./_vendor/github.com/gethinode/mod-katex/dist/katex.scss',
|
||||||
'./_vendor/github.com/gethinode/mod-leaflet/dist/leaflet.scss',
|
'./_vendor/github.com/gethinode/mod-leaflet/dist/leaflet.scss',
|
||||||
'./_vendor/github.com/gethinode/mod-simple-datatables/dist/simple-datatables.scss',
|
'./_vendor/github.com/gethinode/mod-simple-datatables/v2/dist/simple-datatables.scss',
|
||||||
'./_vendor/github.com/twbs/bootstrap/scss/_carousel.scss',
|
'./_vendor/github.com/twbs/bootstrap/scss/_carousel.scss',
|
||||||
'./_vendor/github.com/twbs/bootstrap/scss/_dropdown.scss',
|
'./_vendor/github.com/twbs/bootstrap/scss/_dropdown.scss',
|
||||||
'./_vendor/github.com/twbs/bootstrap/scss/_modal.scss',
|
'./_vendor/github.com/twbs/bootstrap/scss/_modal.scss',
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -1,65 +0,0 @@
|
|||||||
types:
|
|
||||||
background:
|
|
||||||
backdrop:
|
|
||||||
color:
|
|
||||||
subtle:
|
|
||||||
heading:
|
|
||||||
preheading:
|
|
||||||
title:
|
|
||||||
content:
|
|
||||||
align:
|
|
||||||
arrangement:
|
|
||||||
width:
|
|
||||||
size:
|
|
||||||
illustration:
|
|
||||||
image:
|
|
||||||
icon:
|
|
||||||
ratio:
|
|
||||||
class:
|
|
||||||
anchor:
|
|
||||||
mode:
|
|
||||||
width:
|
|
||||||
image-overlay:
|
|
||||||
hook:
|
|
||||||
input:
|
|
||||||
section:
|
|
||||||
nested:
|
|
||||||
keywords:
|
|
||||||
categories:
|
|
||||||
tags:
|
|
||||||
reverse:
|
|
||||||
sort:
|
|
||||||
items:
|
|
||||||
- title:
|
|
||||||
description:
|
|
||||||
elements:
|
|
||||||
- title:
|
|
||||||
icon:
|
|
||||||
image:
|
|
||||||
mode:
|
|
||||||
content:
|
|
||||||
links:
|
|
||||||
- title:
|
|
||||||
url:
|
|
||||||
icon:
|
|
||||||
force:
|
|
||||||
messages:
|
|
||||||
- title:
|
|
||||||
icon:
|
|
||||||
content:
|
|
||||||
link:
|
|
||||||
label:
|
|
||||||
more:
|
|
||||||
title:
|
|
||||||
link:
|
|
||||||
styles:
|
|
||||||
- ratio:
|
|
||||||
orientation:
|
|
||||||
portrait:
|
|
||||||
width:
|
|
||||||
video:
|
|
||||||
provider:
|
|
||||||
account:
|
|
||||||
id:
|
|
||||||
autoplay:
|
|
||||||
query-args:
|
|
@@ -2,3 +2,17 @@ comment: >-
|
|||||||
Initializes images dimensions (widht x height for supported image ratios.
|
Initializes images dimensions (widht x height for supported image ratios.
|
||||||
arguments:
|
arguments:
|
||||||
ratio:
|
ratio:
|
||||||
|
type: select
|
||||||
|
optional: true
|
||||||
|
comment: >-
|
||||||
|
Ratio of the media asset. When the asset is an image, it is resized and
|
||||||
|
cropped (not applicable to vector graphics). For video assets, the padding
|
||||||
|
of the embedded frame is adjusted.
|
||||||
|
options:
|
||||||
|
values:
|
||||||
|
- 1x1
|
||||||
|
- 3x2
|
||||||
|
- 4x3
|
||||||
|
- 16x9
|
||||||
|
- 21x9
|
||||||
|
- auto
|
||||||
|
@@ -4,6 +4,8 @@ arguments:
|
|||||||
mode:
|
mode:
|
||||||
ratio:
|
ratio:
|
||||||
portrait:
|
portrait:
|
||||||
|
image-height:
|
||||||
|
image-width:
|
||||||
loading:
|
loading:
|
||||||
priority:
|
priority:
|
||||||
sizes:
|
sizes:
|
||||||
|
@@ -44,6 +44,10 @@ arguments:
|
|||||||
release: v0.24.0
|
release: v0.24.0
|
||||||
anchor:
|
anchor:
|
||||||
release: v0.24.22
|
release: v0.24.22
|
||||||
|
image-height:
|
||||||
|
release: v1.0.0
|
||||||
|
image-width:
|
||||||
|
release: v1.0.0
|
||||||
# deprecated arguments
|
# deprecated arguments
|
||||||
url:
|
url:
|
||||||
type:
|
type:
|
||||||
|
@@ -129,4 +129,4 @@ home = ["HTML", "RSS", "REDIR", "netlify", "server"]
|
|||||||
[[module.imports]]
|
[[module.imports]]
|
||||||
path = "github.com/gethinode/mod-simple-datatables"
|
path = "github.com/gethinode/mod-simple-datatables"
|
||||||
[[module.imports]]
|
[[module.imports]]
|
||||||
path = "github.com/gethinode/mod-utils/v3"
|
path = "github.com/gethinode/mod-utils/v4"
|
||||||
|
@@ -125,8 +125,7 @@
|
|||||||
# themeFontPath = "https://fonts.googleapis.com/css2?family=Inter:wght@200;300;600&display=swap" # external path
|
# themeFontPath = "https://fonts.googleapis.com/css2?family=Inter:wght@200;300;600&display=swap" # external path
|
||||||
themeFontPath = "/fonts" # local path
|
themeFontPath = "/fonts" # local path
|
||||||
themeFontPreload = "/fonts/inter-v12-latin-regular.woff2"
|
themeFontPreload = "/fonts/inter-v12-latin-regular.woff2"
|
||||||
# TODO: adjust purge settings
|
purge = true
|
||||||
purge = false
|
|
||||||
# toml-docs-end theme-colors
|
# toml-docs-end theme-colors
|
||||||
|
|
||||||
[schema]
|
[schema]
|
||||||
|
@@ -30,7 +30,7 @@ const purgecss = purgeCSSPlugin({
|
|||||||
'./_vendor/github.com/gethinode/mod-flexsearch/v2/assets/scss/modules/flexsearch/flexsearch.scss',
|
'./_vendor/github.com/gethinode/mod-flexsearch/v2/assets/scss/modules/flexsearch/flexsearch.scss',
|
||||||
'./_vendor/github.com/gethinode/mod-katex/dist/katex.scss',
|
'./_vendor/github.com/gethinode/mod-katex/dist/katex.scss',
|
||||||
'./_vendor/github.com/gethinode/mod-leaflet/dist/leaflet.scss',
|
'./_vendor/github.com/gethinode/mod-leaflet/dist/leaflet.scss',
|
||||||
'./_vendor/github.com/gethinode/mod-simple-datatables/dist/simple-datatables.scss',
|
'./_vendor/github.com/gethinode/mod-simple-datatables/v2/dist/simple-datatables.scss',
|
||||||
'./_vendor/github.com/twbs/bootstrap/scss/_carousel.scss',
|
'./_vendor/github.com/twbs/bootstrap/scss/_carousel.scss',
|
||||||
'./_vendor/github.com/twbs/bootstrap/scss/_dropdown.scss',
|
'./_vendor/github.com/twbs/bootstrap/scss/_dropdown.scss',
|
||||||
'./_vendor/github.com/twbs/bootstrap/scss/_modal.scss',
|
'./_vendor/github.com/twbs/bootstrap/scss/_modal.scss',
|
||||||
|
@@ -59,6 +59,16 @@ As an example, the following shortcode displays a simple alert.
|
|||||||
{{< /example >}}
|
{{< /example >}}
|
||||||
<!-- markdownlint-enable MD037 -->
|
<!-- markdownlint-enable MD037 -->
|
||||||
|
|
||||||
|
## Args
|
||||||
|
|
||||||
|
Use the args shortcode to generates a table of structured arguments. The argument definitions are expected to be defined in a data file identified by a provided structure name.
|
||||||
|
|
||||||
|
<!-- markdownlint-disable MD037 -->
|
||||||
|
{{< example lang="hugo" >}}
|
||||||
|
{{</* args "args" */>}}
|
||||||
|
{{< /example >}}
|
||||||
|
<!-- markdownlint-enable MD037 -->
|
||||||
|
|
||||||
## Badge
|
## Badge
|
||||||
|
|
||||||
Use the badge shortcode to display a badge for a heading.
|
Use the badge shortcode to display a badge for a heading.
|
||||||
@@ -238,10 +248,12 @@ Use the `file` shortcode to print and highlight the full content of a given inpu
|
|||||||
|
|
||||||
<!-- markdownlint-disable MD037 -->
|
<!-- markdownlint-disable MD037 -->
|
||||||
{{< example lang="hugo" >}}
|
{{< example lang="hugo" >}}
|
||||||
{{</* file file="./config/_default/languages.toml" id="file-collapse-1" */>}}
|
{{</* file file="./config/_default/languages.toml" id="file-collapse-1" full=false */>}}
|
||||||
{{< /example >}}
|
{{< /example >}}
|
||||||
<!-- markdownlint-enable MD037 -->
|
<!-- markdownlint-enable MD037 -->
|
||||||
|
|
||||||
|
{{< file full="false" file="./config/_default/languages.toml" id="file-collapse-5" >}}
|
||||||
|
|
||||||
## Icon
|
## Icon
|
||||||
|
|
||||||
As an example, the following shortcodes show a square check, a brand logo, a circle check, and a custom icon.
|
As an example, the following shortcodes show a square check, a brand logo, a circle check, and a custom icon.
|
||||||
|
@@ -22,7 +22,7 @@ As an example, the following shortcode shows an animation that plays on hover.
|
|||||||
|
|
||||||
<!-- markdownlint-disable MD037 -->
|
<!-- markdownlint-disable MD037 -->
|
||||||
{{< example lang="hugo" >}}
|
{{< example lang="hugo" >}}
|
||||||
{{</* animation data="gatin.json" auto=false hover=true class="col-6 mx-auto" */>}}
|
{{</* animation animation-data="gatin.json" autoplay=false hover=true class="col-6 mx-auto" */>}}
|
||||||
{{< /example >}}
|
{{< /example >}}
|
||||||
<!-- markdownlint-enable MD037 -->
|
<!-- markdownlint-enable MD037 -->
|
||||||
|
|
||||||
|
@@ -22,7 +22,7 @@ Hinode propose plusieurs shortcodes en plus des [éléments Bootstrap]({{% relre
|
|||||||
|
|
||||||
<!-- markdownlint-disable MD037 -->
|
<!-- markdownlint-disable MD037 -->
|
||||||
{{< example lang="hugo" >}}
|
{{< example lang="hugo" >}}
|
||||||
{{</* animation data="gatin.json" auto=false hover=true class="col-6 mx-auto" */>}}
|
{{</* animation animation-data="gatin.json" autoplay=false hover=true class="col-6 mx-auto" */>}}
|
||||||
{{< /example >}}
|
{{< /example >}}
|
||||||
<!-- markdownlint-enable MD037 -->
|
<!-- markdownlint-enable MD037 -->
|
||||||
|
|
||||||
|
@@ -21,7 +21,7 @@ Het volgende voorbeeld gebruikt een shortcode om een animatie te tonen, die afsp
|
|||||||
|
|
||||||
<!-- markdownlint-disable MD037 -->
|
<!-- markdownlint-disable MD037 -->
|
||||||
{{< example lang="hugo" >}}
|
{{< example lang="hugo" >}}
|
||||||
{{</* animation data="gatin.json" auto=false hover=true class="col-6 mx-auto" */>}}
|
{{</* animation animation-data="gatin.json" autoplay=false hover=true class="col-6 mx-auto" */>}}
|
||||||
{{< /example >}}
|
{{< /example >}}
|
||||||
<!-- markdownlint-enable MD037 -->
|
<!-- markdownlint-enable MD037 -->
|
||||||
|
|
||||||
|
@@ -7,5 +7,5 @@ github.com/gethinode/mod-cookieyes/v2 v2.0.4 h1:QgYSD3S23351e7xEeQb+Mon+e+I6Rbnn
|
|||||||
github.com/gethinode/mod-cookieyes/v2 v2.0.4/go.mod h1:tULb7D7CoTycGUyL7ryqHJKaX11XuL2SN+XwP7/DI0Y=
|
github.com/gethinode/mod-cookieyes/v2 v2.0.4/go.mod h1:tULb7D7CoTycGUyL7ryqHJKaX11XuL2SN+XwP7/DI0Y=
|
||||||
github.com/gethinode/mod-cookieyes/v2 v2.1.2 h1:hzGCbRbpNAVkLr+jFWpAQaXHG0lgK+KgIpaZYsI1J+U=
|
github.com/gethinode/mod-cookieyes/v2 v2.1.2 h1:hzGCbRbpNAVkLr+jFWpAQaXHG0lgK+KgIpaZYsI1J+U=
|
||||||
github.com/gethinode/mod-cookieyes/v2 v2.1.2/go.mod h1:tULb7D7CoTycGUyL7ryqHJKaX11XuL2SN+XwP7/DI0Y=
|
github.com/gethinode/mod-cookieyes/v2 v2.1.2/go.mod h1:tULb7D7CoTycGUyL7ryqHJKaX11XuL2SN+XwP7/DI0Y=
|
||||||
github.com/gethinode/mod-utils/v3 v3.0.2 h1:AewNQYVXy/qoNdqJGG6nKCZXjtXavcZcgdeC1Q6EEnQ=
|
github.com/gethinode/mod-utils/v4 v4.4.0 h1:IhhJDLqXCdYvrjM6kUR10wlg0kyZrY94f7EuGMj8NN0=
|
||||||
github.com/gethinode/mod-utils/v3 v3.0.2/go.mod h1:9iHYWiDpDlcyrGAOHniubK/kziJYhTsw7UpGM+u4MOM=
|
github.com/gethinode/mod-utils/v4 v4.4.0/go.mod h1:bYmvRdAo4ICy5MpSGafDvO4p5bTDpsDKFCPL3bH0mN4=
|
||||||
|
@@ -97,12 +97,20 @@
|
|||||||
"ball",
|
"ball",
|
||||||
"bg-bg-body-tertiary",
|
"bg-bg-body-tertiary",
|
||||||
"bg-bg-primary-subtle",
|
"bg-bg-primary-subtle",
|
||||||
|
"bg-black",
|
||||||
"bg-body",
|
"bg-body",
|
||||||
"bg-body-tertiary",
|
"bg-body-tertiary",
|
||||||
"bg-danger",
|
"bg-danger",
|
||||||
|
"bg-dark",
|
||||||
|
"bg-info",
|
||||||
|
"bg-light",
|
||||||
"bg-opacity-10",
|
"bg-opacity-10",
|
||||||
"bg-primary",
|
"bg-primary",
|
||||||
"bg-primary-subtle",
|
"bg-primary-subtle",
|
||||||
|
"bg-secondary",
|
||||||
|
"bg-success",
|
||||||
|
"bg-warning",
|
||||||
|
"bg-white",
|
||||||
"bi",
|
"bi",
|
||||||
"bi-activity",
|
"bi-activity",
|
||||||
"border",
|
"border",
|
||||||
@@ -122,18 +130,20 @@
|
|||||||
"btn-group",
|
"btn-group",
|
||||||
"btn-light",
|
"btn-light",
|
||||||
"btn-link",
|
"btn-link",
|
||||||
"btn-md",
|
|
||||||
"btn-outline-primary",
|
"btn-outline-primary",
|
||||||
"btn-outline-secondary",
|
"btn-outline-secondary",
|
||||||
"btn-primary",
|
"btn-primary",
|
||||||
"btn-secondary",
|
"btn-secondary",
|
||||||
|
"btn-sm",
|
||||||
"btn-social",
|
"btn-social",
|
||||||
|
"btn-xs",
|
||||||
"card",
|
"card",
|
||||||
"card-block-2",
|
"card-block-2",
|
||||||
"card-body",
|
"card-body",
|
||||||
"card-body-link",
|
"card-body-link",
|
||||||
"card-body-margin",
|
"card-body-margin",
|
||||||
"card-button",
|
"card-button",
|
||||||
|
"card-button-link",
|
||||||
"card-container",
|
"card-container",
|
||||||
"card-container-wrapper",
|
"card-container-wrapper",
|
||||||
"card-emphasize",
|
"card-emphasize",
|
||||||
@@ -228,23 +238,19 @@
|
|||||||
"fa-angle-left",
|
"fa-angle-left",
|
||||||
"fa-arrow-left",
|
"fa-arrow-left",
|
||||||
"fa-arrow-right",
|
"fa-arrow-right",
|
||||||
"fa-book-open",
|
|
||||||
"fa-bootstrap",
|
"fa-bootstrap",
|
||||||
"fa-check",
|
|
||||||
"fa-chevron-right",
|
"fa-chevron-right",
|
||||||
"fa-circle",
|
"fa-circle",
|
||||||
"fa-circle-check",
|
"fa-circle-check",
|
||||||
"fa-circle-play",
|
"fa-circle-play",
|
||||||
"fa-circle-question",
|
"fa-circle-question",
|
||||||
"fa-code",
|
"fa-code",
|
||||||
"fa-display",
|
|
||||||
"fa-divide",
|
"fa-divide",
|
||||||
"fa-docker",
|
"fa-docker",
|
||||||
"fa-ellipsis",
|
"fa-ellipsis",
|
||||||
"fa-face-frown",
|
"fa-face-frown",
|
||||||
"fa-facebook",
|
"fa-facebook",
|
||||||
"fa-fluid",
|
"fa-fluid",
|
||||||
"fa-font-awesome",
|
|
||||||
"fa-fw",
|
"fa-fw",
|
||||||
"fa-github",
|
"fa-github",
|
||||||
"fa-globe",
|
"fa-globe",
|
||||||
@@ -257,14 +263,11 @@
|
|||||||
"fa-link",
|
"fa-link",
|
||||||
"fa-linkedin",
|
"fa-linkedin",
|
||||||
"fa-magnifying-glass",
|
"fa-magnifying-glass",
|
||||||
"fa-markdown",
|
|
||||||
"fa-medium",
|
"fa-medium",
|
||||||
"fa-moon",
|
"fa-moon",
|
||||||
"fa-robot",
|
|
||||||
"fa-rocket",
|
"fa-rocket",
|
||||||
"fa-rotate-90",
|
"fa-rotate-90",
|
||||||
"fa-share-nodes",
|
"fa-share-nodes",
|
||||||
"fa-sitemap",
|
|
||||||
"fa-sort",
|
"fa-sort",
|
||||||
"fa-square-check",
|
"fa-square-check",
|
||||||
"fa-stack",
|
"fa-stack",
|
||||||
@@ -285,7 +288,6 @@
|
|||||||
"flex-column",
|
"flex-column",
|
||||||
"flex-fill",
|
"flex-fill",
|
||||||
"flex-grow-1",
|
"flex-grow-1",
|
||||||
"flex-md-grow-0",
|
|
||||||
"flex-nowrap",
|
"flex-nowrap",
|
||||||
"flex-row",
|
"flex-row",
|
||||||
"font-monospace",
|
"font-monospace",
|
||||||
@@ -297,7 +299,6 @@
|
|||||||
"fs-6",
|
"fs-6",
|
||||||
"fs-lg-5",
|
"fs-lg-5",
|
||||||
"fs-md-5",
|
"fs-md-5",
|
||||||
"fullscreen",
|
|
||||||
"fw-30",
|
"fw-30",
|
||||||
"fw-bold",
|
"fw-bold",
|
||||||
"fw-semibold",
|
"fw-semibold",
|
||||||
@@ -339,8 +340,19 @@
|
|||||||
"label",
|
"label",
|
||||||
"lead",
|
"lead",
|
||||||
"leaflet-map",
|
"leaflet-map",
|
||||||
|
"link-bg-black",
|
||||||
|
"link-bg-body",
|
||||||
"link-bg-body-tertiary",
|
"link-bg-body-tertiary",
|
||||||
|
"link-bg-danger",
|
||||||
|
"link-bg-dark",
|
||||||
"link-bg-footer",
|
"link-bg-footer",
|
||||||
|
"link-bg-info",
|
||||||
|
"link-bg-light",
|
||||||
|
"link-bg-primary",
|
||||||
|
"link-bg-secondary",
|
||||||
|
"link-bg-success",
|
||||||
|
"link-bg-warning",
|
||||||
|
"link-bg-white",
|
||||||
"link-primary",
|
"link-primary",
|
||||||
"link-secondary",
|
"link-secondary",
|
||||||
"link-success",
|
"link-success",
|
||||||
@@ -350,7 +362,7 @@
|
|||||||
"m-auto",
|
"m-auto",
|
||||||
"m-md-n4",
|
"m-md-n4",
|
||||||
"m-n1",
|
"m-n1",
|
||||||
"main-content",
|
"main",
|
||||||
"main-nav-toggler",
|
"main-nav-toggler",
|
||||||
"mb-0",
|
"mb-0",
|
||||||
"mb-3",
|
"mb-3",
|
||||||
@@ -373,7 +385,9 @@
|
|||||||
"mt-auto",
|
"mt-auto",
|
||||||
"mt-md-0",
|
"mt-md-0",
|
||||||
"multi-docs-collapse-15",
|
"multi-docs-collapse-15",
|
||||||
|
"multi-docs-collapse-17",
|
||||||
"multi-file-collapse-1",
|
"multi-file-collapse-1",
|
||||||
|
"multi-file-collapse-5",
|
||||||
"mx-auto",
|
"mx-auto",
|
||||||
"mx-md-0",
|
"mx-md-0",
|
||||||
"mx-md-2",
|
"mx-md-2",
|
||||||
@@ -397,7 +411,6 @@
|
|||||||
"navbar-mode-selector",
|
"navbar-mode-selector",
|
||||||
"navbar-nav",
|
"navbar-nav",
|
||||||
"navbar-nav-scroll",
|
"navbar-nav-scroll",
|
||||||
"navbar-title",
|
|
||||||
"navbar-toggler",
|
"navbar-toggler",
|
||||||
"next",
|
"next",
|
||||||
"no-js",
|
"no-js",
|
||||||
@@ -406,6 +419,7 @@
|
|||||||
"order-first",
|
"order-first",
|
||||||
"order-md-0",
|
"order-md-0",
|
||||||
"order-md-1",
|
"order-md-1",
|
||||||
|
"p-",
|
||||||
"p-0",
|
"p-0",
|
||||||
"p-1",
|
"p-1",
|
||||||
"p-2",
|
"p-2",
|
||||||
@@ -459,6 +473,7 @@
|
|||||||
"row-cols-lg-3",
|
"row-cols-lg-3",
|
||||||
"row-cols-md-2",
|
"row-cols-md-2",
|
||||||
"row-cols-md-3",
|
"row-cols-md-3",
|
||||||
|
"row-cols-md-4",
|
||||||
"row-cols-sm-2",
|
"row-cols-sm-2",
|
||||||
"row-cols-sm-3",
|
"row-cols-sm-3",
|
||||||
"scrollbar-horizontal",
|
"scrollbar-horizontal",
|
||||||
@@ -488,12 +503,18 @@
|
|||||||
"table-wrap",
|
"table-wrap",
|
||||||
"tag-link",
|
"tag-link",
|
||||||
"text-",
|
"text-",
|
||||||
|
"text-bg-black",
|
||||||
|
"text-bg-body",
|
||||||
"text-bg-body-tertiary",
|
"text-bg-body-tertiary",
|
||||||
|
"text-bg-danger",
|
||||||
|
"text-bg-dark",
|
||||||
"text-bg-info",
|
"text-bg-info",
|
||||||
|
"text-bg-light",
|
||||||
"text-bg-primary",
|
"text-bg-primary",
|
||||||
"text-bg-secondary",
|
"text-bg-secondary",
|
||||||
"text-bg-success",
|
"text-bg-success",
|
||||||
"text-bg-warning",
|
"text-bg-warning",
|
||||||
|
"text-bg-white",
|
||||||
"text-body",
|
"text-body",
|
||||||
"text-body-secondary",
|
"text-body-secondary",
|
||||||
"text-break",
|
"text-break",
|
||||||
@@ -570,6 +591,7 @@
|
|||||||
"alerte",
|
"alerte",
|
||||||
"animatie",
|
"animatie",
|
||||||
"animation",
|
"animation",
|
||||||
|
"args",
|
||||||
"arguments",
|
"arguments",
|
||||||
"background-type",
|
"background-type",
|
||||||
"badge",
|
"badge",
|
||||||
@@ -577,10 +599,11 @@
|
|||||||
"block-diagram",
|
"block-diagram",
|
||||||
"blog",
|
"blog",
|
||||||
"body-docs-collapse-15",
|
"body-docs-collapse-15",
|
||||||
|
"body-docs-collapse-17",
|
||||||
"body-file-collapse-1",
|
"body-file-collapse-1",
|
||||||
|
"body-file-collapse-5",
|
||||||
"bouton",
|
"bouton",
|
||||||
"breadcrumb",
|
"breadcrumb",
|
||||||
"build-a-static-website-fast-and-flexible",
|
|
||||||
"button",
|
"button",
|
||||||
"button-group",
|
"button-group",
|
||||||
"c4-diagram",
|
"c4-diagram",
|
||||||
@@ -595,6 +618,7 @@
|
|||||||
"cloudinary",
|
"cloudinary",
|
||||||
"collapse",
|
"collapse",
|
||||||
"collapse-1",
|
"collapse-1",
|
||||||
|
"colored-cards",
|
||||||
"command-prompt",
|
"command-prompt",
|
||||||
"comment-nous-partageons-vos-informations",
|
"comment-nous-partageons-vos-informations",
|
||||||
"comment-utilisons-nous-les-cookies-",
|
"comment-utilisons-nous-les-cookies-",
|
||||||
@@ -603,7 +627,6 @@
|
|||||||
"cookies-etc",
|
"cookies-etc",
|
||||||
"custom-activity",
|
"custom-activity",
|
||||||
"data-tables",
|
"data-tables",
|
||||||
"developer-friendly-and-secure",
|
|
||||||
"docs",
|
"docs",
|
||||||
"documentation",
|
"documentation",
|
||||||
"elements-type",
|
"elements-type",
|
||||||
@@ -612,147 +635,77 @@
|
|||||||
"exemple",
|
"exemple",
|
||||||
"fa-address-card",
|
"fa-address-card",
|
||||||
"fa-face-frown",
|
"fa-face-frown",
|
||||||
"fa-font-awesome",
|
|
||||||
"fa-square-check",
|
"fa-square-check",
|
||||||
"fab-bootstrap",
|
"fab-bootstrap",
|
||||||
"fab-docker",
|
"fab-docker",
|
||||||
"fab-facebook",
|
"fab-facebook",
|
||||||
"fab-github",
|
"fab-github",
|
||||||
"fab-linkedin",
|
"fab-linkedin",
|
||||||
"fab-markdown",
|
|
||||||
"fab-medium",
|
"fab-medium",
|
||||||
"fab-whatsapp",
|
"fab-whatsapp",
|
||||||
"fab-x-twitter",
|
"fab-x-twitter",
|
||||||
"faq-0d9a663ea13795e571a591d17c829742",
|
"faq-053659d52c3204ebc73c1b387efbbb07",
|
||||||
"faq-0d9a663ea13795e571a591d17c829742-heading-faq-0d9a663ea13795e571a591d17c829742",
|
"faq-053659d52c3204ebc73c1b387efbbb07-heading-faq-053659d52c3204ebc73c1b387efbbb07",
|
||||||
"faq-0d9a663ea13795e571a591d17c829742-item-0",
|
"faq-053659d52c3204ebc73c1b387efbbb07-item-0",
|
||||||
"faq-0d9a663ea13795e571a591d17c829742-item-1",
|
"faq-053659d52c3204ebc73c1b387efbbb07-item-1",
|
||||||
"faq-0d9a663ea13795e571a591d17c829742-item-2",
|
"faq-053659d52c3204ebc73c1b387efbbb07-item-2",
|
||||||
"faq-1a91b395d4e278d5ad50026e5543d315",
|
"faq-3b4f420cc7621af32c96109c12bca758",
|
||||||
"faq-1a91b395d4e278d5ad50026e5543d315-heading-faq-1a91b395d4e278d5ad50026e5543d315",
|
"faq-3b4f420cc7621af32c96109c12bca758-heading-faq-3b4f420cc7621af32c96109c12bca758",
|
||||||
"faq-1a91b395d4e278d5ad50026e5543d315-item-0",
|
"faq-3b4f420cc7621af32c96109c12bca758-item-0",
|
||||||
"faq-1a91b395d4e278d5ad50026e5543d315-item-1",
|
"faq-3b4f420cc7621af32c96109c12bca758-item-1",
|
||||||
"faq-1a91b395d4e278d5ad50026e5543d315-item-2",
|
"faq-3b4f420cc7621af32c96109c12bca758-item-2",
|
||||||
"faq-260a338c938b84539f6f323923f8e613",
|
"faq-4f19b6f4505f05eaa5bbf531aed406b8",
|
||||||
"faq-260a338c938b84539f6f323923f8e613-heading-faq-260a338c938b84539f6f323923f8e613",
|
"faq-4f19b6f4505f05eaa5bbf531aed406b8-heading-faq-4f19b6f4505f05eaa5bbf531aed406b8",
|
||||||
"faq-260a338c938b84539f6f323923f8e613-item-0",
|
"faq-4f19b6f4505f05eaa5bbf531aed406b8-item-0",
|
||||||
"faq-260a338c938b84539f6f323923f8e613-item-1",
|
"faq-4f19b6f4505f05eaa5bbf531aed406b8-item-1",
|
||||||
"faq-260a338c938b84539f6f323923f8e613-item-2",
|
"faq-4f19b6f4505f05eaa5bbf531aed406b8-item-2",
|
||||||
"faq-27223f6d2ae1171f2cf24b1a28156a35",
|
"faq-637b21f5a6c607752e51e0633243d2bf",
|
||||||
"faq-27223f6d2ae1171f2cf24b1a28156a35-heading-faq-27223f6d2ae1171f2cf24b1a28156a35",
|
"faq-637b21f5a6c607752e51e0633243d2bf-heading-faq-637b21f5a6c607752e51e0633243d2bf",
|
||||||
"faq-27223f6d2ae1171f2cf24b1a28156a35-item-0",
|
"faq-637b21f5a6c607752e51e0633243d2bf-item-0",
|
||||||
"faq-27223f6d2ae1171f2cf24b1a28156a35-item-1",
|
"faq-637b21f5a6c607752e51e0633243d2bf-item-1",
|
||||||
"faq-27223f6d2ae1171f2cf24b1a28156a35-item-2",
|
"faq-637b21f5a6c607752e51e0633243d2bf-item-2",
|
||||||
"faq-2d786b12873224179f3ed158e5a7d744",
|
"faq-9b51ee909251b9ba0de086282b0afc7a",
|
||||||
"faq-2d786b12873224179f3ed158e5a7d744-heading-faq-2d786b12873224179f3ed158e5a7d744",
|
"faq-9b51ee909251b9ba0de086282b0afc7a-heading-faq-9b51ee909251b9ba0de086282b0afc7a",
|
||||||
"faq-2d786b12873224179f3ed158e5a7d744-item-0",
|
"faq-9b51ee909251b9ba0de086282b0afc7a-item-0",
|
||||||
"faq-2d786b12873224179f3ed158e5a7d744-item-1",
|
"faq-9b51ee909251b9ba0de086282b0afc7a-item-1",
|
||||||
"faq-2d786b12873224179f3ed158e5a7d744-item-2",
|
"faq-9b51ee909251b9ba0de086282b0afc7a-item-2",
|
||||||
"faq-3c297f2bc52c8df8d94d5eef851ab26d",
|
"faq-aa0a1905cab279bfffa949e96810a3a8",
|
||||||
"faq-3c297f2bc52c8df8d94d5eef851ab26d-heading-faq-3c297f2bc52c8df8d94d5eef851ab26d",
|
"faq-aa0a1905cab279bfffa949e96810a3a8-heading-faq-aa0a1905cab279bfffa949e96810a3a8",
|
||||||
"faq-3c297f2bc52c8df8d94d5eef851ab26d-item-0",
|
"faq-aa0a1905cab279bfffa949e96810a3a8-item-0",
|
||||||
"faq-3c297f2bc52c8df8d94d5eef851ab26d-item-1",
|
"faq-aa0a1905cab279bfffa949e96810a3a8-item-1",
|
||||||
"faq-3c297f2bc52c8df8d94d5eef851ab26d-item-2",
|
"faq-aa0a1905cab279bfffa949e96810a3a8-item-2",
|
||||||
"faq-7021d3f3246f1cad44eb45aab9c051af",
|
"faq-d2df4da095dc8a0c45487af207ebf623",
|
||||||
"faq-7021d3f3246f1cad44eb45aab9c051af-heading-faq-7021d3f3246f1cad44eb45aab9c051af",
|
"faq-d2df4da095dc8a0c45487af207ebf623-heading-faq-d2df4da095dc8a0c45487af207ebf623",
|
||||||
"faq-7021d3f3246f1cad44eb45aab9c051af-item-0",
|
"faq-d2df4da095dc8a0c45487af207ebf623-item-0",
|
||||||
"faq-7021d3f3246f1cad44eb45aab9c051af-item-1",
|
"faq-d2df4da095dc8a0c45487af207ebf623-item-1",
|
||||||
"faq-7021d3f3246f1cad44eb45aab9c051af-item-2",
|
"faq-d2df4da095dc8a0c45487af207ebf623-item-2",
|
||||||
"faq-79c40a4b7e8130c6d59d7d5ec68a806c",
|
"faq-f7b27a38c3ee12525d7d0dc8acc1c600",
|
||||||
"faq-79c40a4b7e8130c6d59d7d5ec68a806c-heading-faq-79c40a4b7e8130c6d59d7d5ec68a806c",
|
"faq-f7b27a38c3ee12525d7d0dc8acc1c600-heading-faq-f7b27a38c3ee12525d7d0dc8acc1c600",
|
||||||
"faq-79c40a4b7e8130c6d59d7d5ec68a806c-item-0",
|
"faq-f7b27a38c3ee12525d7d0dc8acc1c600-item-0",
|
||||||
"faq-79c40a4b7e8130c6d59d7d5ec68a806c-item-1",
|
"faq-f7b27a38c3ee12525d7d0dc8acc1c600-item-1",
|
||||||
"faq-79c40a4b7e8130c6d59d7d5ec68a806c-item-2",
|
"faq-f7b27a38c3ee12525d7d0dc8acc1c600-item-2",
|
||||||
"faq-7a94a6ed05dee266e8fca51d4b03c44a",
|
"faq-fe0f1a534c1ceb0781d73fb79ec3eea1",
|
||||||
"faq-7a94a6ed05dee266e8fca51d4b03c44a-heading-faq-7a94a6ed05dee266e8fca51d4b03c44a",
|
"faq-fe0f1a534c1ceb0781d73fb79ec3eea1-heading-faq-fe0f1a534c1ceb0781d73fb79ec3eea1",
|
||||||
"faq-7a94a6ed05dee266e8fca51d4b03c44a-item-0",
|
"faq-fe0f1a534c1ceb0781d73fb79ec3eea1-item-0",
|
||||||
"faq-7a94a6ed05dee266e8fca51d4b03c44a-item-1",
|
"faq-fe0f1a534c1ceb0781d73fb79ec3eea1-item-1",
|
||||||
"faq-7a94a6ed05dee266e8fca51d4b03c44a-item-2",
|
"faq-fe0f1a534c1ceb0781d73fb79ec3eea1-item-2",
|
||||||
"faq-87875e6a383425f97b473c2f294dc32b",
|
"faq-fe3528d7eb9c1abb5256a70492433843",
|
||||||
"faq-87875e6a383425f97b473c2f294dc32b-heading-faq-87875e6a383425f97b473c2f294dc32b",
|
"faq-fe3528d7eb9c1abb5256a70492433843-heading-faq-fe3528d7eb9c1abb5256a70492433843",
|
||||||
"faq-87875e6a383425f97b473c2f294dc32b-item-0",
|
"faq-fe3528d7eb9c1abb5256a70492433843-item-0",
|
||||||
"faq-87875e6a383425f97b473c2f294dc32b-item-1",
|
"faq-fe3528d7eb9c1abb5256a70492433843-item-1",
|
||||||
"faq-87875e6a383425f97b473c2f294dc32b-item-2",
|
"faq-fe3528d7eb9c1abb5256a70492433843-item-2",
|
||||||
"faq-8cbeda0cbf69e9b1f730419797381724",
|
|
||||||
"faq-8cbeda0cbf69e9b1f730419797381724-heading-faq-8cbeda0cbf69e9b1f730419797381724",
|
|
||||||
"faq-8cbeda0cbf69e9b1f730419797381724-item-0",
|
|
||||||
"faq-8cbeda0cbf69e9b1f730419797381724-item-1",
|
|
||||||
"faq-8cbeda0cbf69e9b1f730419797381724-item-2",
|
|
||||||
"faq-a283ecb983d43eca6d74b09b4cfe0113",
|
|
||||||
"faq-a283ecb983d43eca6d74b09b4cfe0113-heading-faq-a283ecb983d43eca6d74b09b4cfe0113",
|
|
||||||
"faq-a283ecb983d43eca6d74b09b4cfe0113-item-0",
|
|
||||||
"faq-a283ecb983d43eca6d74b09b4cfe0113-item-1",
|
|
||||||
"faq-a283ecb983d43eca6d74b09b4cfe0113-item-2",
|
|
||||||
"faq-bf296c068826c3f70cda629523eaeee2",
|
|
||||||
"faq-bf296c068826c3f70cda629523eaeee2-heading-faq-bf296c068826c3f70cda629523eaeee2",
|
|
||||||
"faq-bf296c068826c3f70cda629523eaeee2-item-0",
|
|
||||||
"faq-bf296c068826c3f70cda629523eaeee2-item-1",
|
|
||||||
"faq-bf296c068826c3f70cda629523eaeee2-item-2",
|
|
||||||
"faq-ca8ce46ac820ed775e7a69120344616d",
|
|
||||||
"faq-ca8ce46ac820ed775e7a69120344616d-heading-faq-ca8ce46ac820ed775e7a69120344616d",
|
|
||||||
"faq-ca8ce46ac820ed775e7a69120344616d-item-0",
|
|
||||||
"faq-ca8ce46ac820ed775e7a69120344616d-item-1",
|
|
||||||
"faq-ca8ce46ac820ed775e7a69120344616d-item-2",
|
|
||||||
"faq-cbbd7ca0faf0b753868403f958cf8744",
|
|
||||||
"faq-cbbd7ca0faf0b753868403f958cf8744-heading-faq-cbbd7ca0faf0b753868403f958cf8744",
|
|
||||||
"faq-cbbd7ca0faf0b753868403f958cf8744-item-0",
|
|
||||||
"faq-cbbd7ca0faf0b753868403f958cf8744-item-1",
|
|
||||||
"faq-cbbd7ca0faf0b753868403f958cf8744-item-2",
|
|
||||||
"faq-cfb71a1e6c505922609807a314e54eed",
|
|
||||||
"faq-cfb71a1e6c505922609807a314e54eed-heading-faq-cfb71a1e6c505922609807a314e54eed",
|
|
||||||
"faq-cfb71a1e6c505922609807a314e54eed-item-0",
|
|
||||||
"faq-cfb71a1e6c505922609807a314e54eed-item-1",
|
|
||||||
"faq-cfb71a1e6c505922609807a314e54eed-item-2",
|
|
||||||
"faq-dce7a0223de22fc974afefb5fb73500c",
|
|
||||||
"faq-dce7a0223de22fc974afefb5fb73500c-heading-faq-dce7a0223de22fc974afefb5fb73500c",
|
|
||||||
"faq-dce7a0223de22fc974afefb5fb73500c-item-0",
|
|
||||||
"faq-dce7a0223de22fc974afefb5fb73500c-item-1",
|
|
||||||
"faq-dce7a0223de22fc974afefb5fb73500c-item-2",
|
|
||||||
"faq-de87d81175f84d4b473aedbb904dca29",
|
|
||||||
"faq-de87d81175f84d4b473aedbb904dca29-heading-faq-de87d81175f84d4b473aedbb904dca29",
|
|
||||||
"faq-de87d81175f84d4b473aedbb904dca29-item-0",
|
|
||||||
"faq-de87d81175f84d4b473aedbb904dca29-item-1",
|
|
||||||
"faq-de87d81175f84d4b473aedbb904dca29-item-2",
|
|
||||||
"faq-de9ce1500782d5d44b4de7a31ac22036",
|
|
||||||
"faq-de9ce1500782d5d44b4de7a31ac22036-heading-faq-de9ce1500782d5d44b4de7a31ac22036",
|
|
||||||
"faq-de9ce1500782d5d44b4de7a31ac22036-item-0",
|
|
||||||
"faq-de9ce1500782d5d44b4de7a31ac22036-item-1",
|
|
||||||
"faq-de9ce1500782d5d44b4de7a31ac22036-item-2",
|
|
||||||
"faq-e40f4cdf1d5fd2b6aa8c07326e2ba943",
|
|
||||||
"faq-e40f4cdf1d5fd2b6aa8c07326e2ba943-heading-faq-e40f4cdf1d5fd2b6aa8c07326e2ba943",
|
|
||||||
"faq-e40f4cdf1d5fd2b6aa8c07326e2ba943-item-0",
|
|
||||||
"faq-e40f4cdf1d5fd2b6aa8c07326e2ba943-item-1",
|
|
||||||
"faq-e40f4cdf1d5fd2b6aa8c07326e2ba943-item-2",
|
|
||||||
"faq-ec1d24cb71b18507b09f080761d59750",
|
|
||||||
"faq-ec1d24cb71b18507b09f080761d59750-heading-faq-ec1d24cb71b18507b09f080761d59750",
|
|
||||||
"faq-ec1d24cb71b18507b09f080761d59750-item-0",
|
|
||||||
"faq-ec1d24cb71b18507b09f080761d59750-item-1",
|
|
||||||
"faq-ec1d24cb71b18507b09f080761d59750-item-2",
|
|
||||||
"faq-f760b3a9afdbc65e4a1dea126792034b",
|
|
||||||
"faq-f760b3a9afdbc65e4a1dea126792034b-heading-faq-f760b3a9afdbc65e4a1dea126792034b",
|
|
||||||
"faq-f760b3a9afdbc65e4a1dea126792034b-item-0",
|
|
||||||
"faq-f760b3a9afdbc65e4a1dea126792034b-item-1",
|
|
||||||
"faq-f760b3a9afdbc65e4a1dea126792034b-item-2",
|
|
||||||
"faq-f965312ce85935dd57bb6ac2a5ae85fb",
|
|
||||||
"faq-f965312ce85935dd57bb6ac2a5ae85fb-heading-faq-f965312ce85935dd57bb6ac2a5ae85fb",
|
|
||||||
"faq-f965312ce85935dd57bb6ac2a5ae85fb-item-0",
|
|
||||||
"faq-f965312ce85935dd57bb6ac2a5ae85fb-item-1",
|
|
||||||
"faq-f965312ce85935dd57bb6ac2a5ae85fb-item-2",
|
|
||||||
"fas-1",
|
"fas-1",
|
||||||
"fas-2",
|
"fas-2",
|
||||||
"fas-3",
|
"fas-3",
|
||||||
"fas-angle-left",
|
"fas-angle-left",
|
||||||
"fas-arrow-left",
|
"fas-arrow-left",
|
||||||
"fas-arrow-right",
|
"fas-arrow-right",
|
||||||
"fas-book-open",
|
|
||||||
"fas-check",
|
|
||||||
"fas-chevron-right",
|
"fas-chevron-right",
|
||||||
"fas-circle",
|
"fas-circle",
|
||||||
"fas-circle-check",
|
"fas-circle-check",
|
||||||
"fas-circle-play",
|
"fas-circle-play",
|
||||||
"fas-circle-question",
|
"fas-circle-question",
|
||||||
"fas-code",
|
"fas-code",
|
||||||
"fas-display",
|
|
||||||
"fas-divide",
|
"fas-divide",
|
||||||
"fas-ellipsis",
|
"fas-ellipsis",
|
||||||
"fas-globe",
|
"fas-globe",
|
||||||
@@ -764,10 +717,8 @@
|
|||||||
"fas-link",
|
"fas-link",
|
||||||
"fas-magnifying-glass",
|
"fas-magnifying-glass",
|
||||||
"fas-moon",
|
"fas-moon",
|
||||||
"fas-robot",
|
|
||||||
"fas-rocket",
|
"fas-rocket",
|
||||||
"fas-share-nodes",
|
"fas-share-nodes",
|
||||||
"fas-sitemap",
|
|
||||||
"fas-sort",
|
"fas-sort",
|
||||||
"fas-sun",
|
"fas-sun",
|
||||||
"fas-timeline",
|
"fas-timeline",
|
||||||
@@ -775,10 +726,11 @@
|
|||||||
"fichier",
|
"fichier",
|
||||||
"fil-dariane",
|
"fil-dariane",
|
||||||
"file",
|
"file",
|
||||||
"flexible--ready-to-use",
|
|
||||||
"flowchart",
|
"flowchart",
|
||||||
"footer-docs-collapse-15",
|
"footer-docs-collapse-15",
|
||||||
|
"footer-docs-collapse-17",
|
||||||
"footer-file-collapse-1",
|
"footer-file-collapse-1",
|
||||||
|
"footer-file-collapse-5",
|
||||||
"formula-katex",
|
"formula-katex",
|
||||||
"formule-katex",
|
"formule-katex",
|
||||||
"gantt-diagram",
|
"gantt-diagram",
|
||||||
@@ -830,15 +782,12 @@
|
|||||||
"navbar-0-collapse",
|
"navbar-0-collapse",
|
||||||
"navbar-mode",
|
"navbar-mode",
|
||||||
"navbar-mode-checkbox",
|
"navbar-mode-checkbox",
|
||||||
"navbar-sample",
|
|
||||||
"navbar-sample-checkbox",
|
|
||||||
"navbar-sample-collapse",
|
"navbar-sample-collapse",
|
||||||
"navigation",
|
"navigation",
|
||||||
"notification",
|
"notification",
|
||||||
"overview",
|
"overview",
|
||||||
"persona",
|
"persona",
|
||||||
"pie-chart",
|
"pie-chart",
|
||||||
"powered-by-open-source",
|
|
||||||
"projecten",
|
"projecten",
|
||||||
"projects",
|
"projects",
|
||||||
"projets",
|
"projets",
|
||||||
|
13
go.mod
13
go.mod
@@ -8,14 +8,17 @@ require (
|
|||||||
github.com/gethinode/mod-bootstrap v1.3.3 // indirect
|
github.com/gethinode/mod-bootstrap v1.3.3 // indirect
|
||||||
github.com/gethinode/mod-csp v1.0.7 // indirect
|
github.com/gethinode/mod-csp v1.0.7 // indirect
|
||||||
github.com/gethinode/mod-flexsearch/v2 v2.1.1 // indirect
|
github.com/gethinode/mod-flexsearch/v2 v2.1.1 // indirect
|
||||||
github.com/gethinode/mod-fontawesome/v2 v2.0.0 // indirect
|
github.com/gethinode/mod-fontawesome/v2 v2.1.1 // indirect
|
||||||
github.com/gethinode/mod-google-analytics v1.3.1 // indirect
|
github.com/gethinode/mod-google-analytics v1.3.2 // indirect
|
||||||
github.com/gethinode/mod-katex v1.1.3 // indirect
|
github.com/gethinode/mod-katex v1.1.3 // indirect
|
||||||
github.com/gethinode/mod-leaflet v1.2.1 // indirect
|
github.com/gethinode/mod-leaflet v1.3.0 // indirect
|
||||||
github.com/gethinode/mod-lottie v1.5.14 // indirect
|
github.com/gethinode/mod-lottie v1.6.0 // indirect
|
||||||
github.com/gethinode/mod-mermaid v1.1.23 // indirect
|
github.com/gethinode/mod-mermaid v1.1.23 // indirect
|
||||||
|
github.com/gethinode/mod-mermaid/v2 v2.0.1 // indirect
|
||||||
github.com/gethinode/mod-simple-datatables v1.1.7 // indirect
|
github.com/gethinode/mod-simple-datatables v1.1.7 // indirect
|
||||||
|
github.com/gethinode/mod-simple-datatables/v2 v2.0.1 // indirect
|
||||||
github.com/gethinode/mod-utils/v3 v3.3.1 // indirect
|
github.com/gethinode/mod-utils/v3 v3.3.1 // indirect
|
||||||
|
github.com/gethinode/mod-utils/v4 v4.6.0 // indirect
|
||||||
github.com/nextapps-de/flexsearch v0.0.0-20250606060143-c28f52c09b7a // indirect
|
github.com/nextapps-de/flexsearch v0.0.0-20250606060143-c28f52c09b7a // indirect
|
||||||
github.com/twbs/bootstrap v5.3.6+incompatible // indirect
|
github.com/twbs/bootstrap v5.3.7+incompatible // indirect
|
||||||
)
|
)
|
||||||
|
22
go.sum
22
go.sum
@@ -156,6 +156,10 @@ github.com/gethinode/mod-fontawesome v1.10.1 h1:gXQ75VXI+a0W2ALkAFHd/QFQ/VoZR6eu
|
|||||||
github.com/gethinode/mod-fontawesome v1.10.1/go.mod h1:xBKsZH3WJtMOItZVlp9SbO51uaBy6IbvUZSKpNu3b6Y=
|
github.com/gethinode/mod-fontawesome v1.10.1/go.mod h1:xBKsZH3WJtMOItZVlp9SbO51uaBy6IbvUZSKpNu3b6Y=
|
||||||
github.com/gethinode/mod-fontawesome/v2 v2.0.0 h1:vIcVq4sa68iqYBEei+XBZgWKvT79NXuh+jMS6yVpCV8=
|
github.com/gethinode/mod-fontawesome/v2 v2.0.0 h1:vIcVq4sa68iqYBEei+XBZgWKvT79NXuh+jMS6yVpCV8=
|
||||||
github.com/gethinode/mod-fontawesome/v2 v2.0.0/go.mod h1:MJghtpjpnbGVzRN+1rH5Fs9Y+eQAawAotGnlemEPb60=
|
github.com/gethinode/mod-fontawesome/v2 v2.0.0/go.mod h1:MJghtpjpnbGVzRN+1rH5Fs9Y+eQAawAotGnlemEPb60=
|
||||||
|
github.com/gethinode/mod-fontawesome/v2 v2.1.0 h1:kRQ/4ady4Ih/m3bJ/1+/rkFhunuzjNEc4NqIlpNks/o=
|
||||||
|
github.com/gethinode/mod-fontawesome/v2 v2.1.0/go.mod h1:Jhwzi3KQI3fYn1hPNPJFCk+kcz80s8ONT4FmwLTXH2c=
|
||||||
|
github.com/gethinode/mod-fontawesome/v2 v2.1.1 h1:EieVCvEiT0ulXpEHY4kCLJvZCIvGkupIVyoCRTidrvo=
|
||||||
|
github.com/gethinode/mod-fontawesome/v2 v2.1.1/go.mod h1:zukv88wXqquEvTJJ9mWWk8Ia+9INnA41wYqusf2RcHA=
|
||||||
github.com/gethinode/mod-google-analytics v1.0.0 h1:fly42RQ69bdyJe8WFefsBIo7WMIXkd3wZn32kyAr4h4=
|
github.com/gethinode/mod-google-analytics v1.0.0 h1:fly42RQ69bdyJe8WFefsBIo7WMIXkd3wZn32kyAr4h4=
|
||||||
github.com/gethinode/mod-google-analytics v1.0.0/go.mod h1:dl628cFozpCvoIMCiV7ujzQipjxcm3eatXrSfLPWNII=
|
github.com/gethinode/mod-google-analytics v1.0.0/go.mod h1:dl628cFozpCvoIMCiV7ujzQipjxcm3eatXrSfLPWNII=
|
||||||
github.com/gethinode/mod-google-analytics v1.0.1 h1:zbmOdnAhhFCA7qWw7fnR46biWhqW2r06sIaTWyhB5R0=
|
github.com/gethinode/mod-google-analytics v1.0.1 h1:zbmOdnAhhFCA7qWw7fnR46biWhqW2r06sIaTWyhB5R0=
|
||||||
@@ -182,6 +186,8 @@ github.com/gethinode/mod-google-analytics v1.3.0 h1:R9oRB6nbFDwLsNmIhxlcmUVH4JE1
|
|||||||
github.com/gethinode/mod-google-analytics v1.3.0/go.mod h1:dl628cFozpCvoIMCiV7ujzQipjxcm3eatXrSfLPWNII=
|
github.com/gethinode/mod-google-analytics v1.3.0/go.mod h1:dl628cFozpCvoIMCiV7ujzQipjxcm3eatXrSfLPWNII=
|
||||||
github.com/gethinode/mod-google-analytics v1.3.1 h1:WPXrsO6Kpp0k8PYY9a1JyiZgYGMlkBfHY8eEg6CfcL0=
|
github.com/gethinode/mod-google-analytics v1.3.1 h1:WPXrsO6Kpp0k8PYY9a1JyiZgYGMlkBfHY8eEg6CfcL0=
|
||||||
github.com/gethinode/mod-google-analytics v1.3.1/go.mod h1:dl628cFozpCvoIMCiV7ujzQipjxcm3eatXrSfLPWNII=
|
github.com/gethinode/mod-google-analytics v1.3.1/go.mod h1:dl628cFozpCvoIMCiV7ujzQipjxcm3eatXrSfLPWNII=
|
||||||
|
github.com/gethinode/mod-google-analytics v1.3.2 h1:W4caxWkSor/BFfOEGDDMp+7RajO/Jh1bE7LXxPqLE3A=
|
||||||
|
github.com/gethinode/mod-google-analytics v1.3.2/go.mod h1:dl628cFozpCvoIMCiV7ujzQipjxcm3eatXrSfLPWNII=
|
||||||
github.com/gethinode/mod-katex v1.0.0 h1:me/3dIIZBkfk1mRIFt8QiAGYwYDoSG5bc2hHRtIutFc=
|
github.com/gethinode/mod-katex v1.0.0 h1:me/3dIIZBkfk1mRIFt8QiAGYwYDoSG5bc2hHRtIutFc=
|
||||||
github.com/gethinode/mod-katex v1.0.0/go.mod h1:byAfpI3wuqNJIooTGVEGc1cjBhhCy4+CcK1H6495MYg=
|
github.com/gethinode/mod-katex v1.0.0/go.mod h1:byAfpI3wuqNJIooTGVEGc1cjBhhCy4+CcK1H6495MYg=
|
||||||
github.com/gethinode/mod-katex v1.0.1 h1:809QUztxmKgMNchU+v03iMO7Ma+ISc3ZzhXYauc21rs=
|
github.com/gethinode/mod-katex v1.0.1 h1:809QUztxmKgMNchU+v03iMO7Ma+ISc3ZzhXYauc21rs=
|
||||||
@@ -232,6 +238,8 @@ github.com/gethinode/mod-leaflet v1.2.0 h1:5q5LHmGNi9N4cdRDCsl/6oI8vY3oQ2ogNUjP3
|
|||||||
github.com/gethinode/mod-leaflet v1.2.0/go.mod h1:Ei0x9WiL7Dbi4JeG6yI1CE63bT1QJ8sKi67Jea1wFSE=
|
github.com/gethinode/mod-leaflet v1.2.0/go.mod h1:Ei0x9WiL7Dbi4JeG6yI1CE63bT1QJ8sKi67Jea1wFSE=
|
||||||
github.com/gethinode/mod-leaflet v1.2.1 h1:p0bKi+F5vbXwYknBvFEN9KymK8PRqKaYhVz5O1QPs/c=
|
github.com/gethinode/mod-leaflet v1.2.1 h1:p0bKi+F5vbXwYknBvFEN9KymK8PRqKaYhVz5O1QPs/c=
|
||||||
github.com/gethinode/mod-leaflet v1.2.1/go.mod h1:Ei0x9WiL7Dbi4JeG6yI1CE63bT1QJ8sKi67Jea1wFSE=
|
github.com/gethinode/mod-leaflet v1.2.1/go.mod h1:Ei0x9WiL7Dbi4JeG6yI1CE63bT1QJ8sKi67Jea1wFSE=
|
||||||
|
github.com/gethinode/mod-leaflet v1.3.0 h1:rRjuuW2KVJjnrBrFIOxxHxkB6RPdmlTivBlvceBG3Fk=
|
||||||
|
github.com/gethinode/mod-leaflet v1.3.0/go.mod h1:F/XR1lYKENw91u+IC4NXQT6dbCyJlSJUPClMVpBK8Tw=
|
||||||
github.com/gethinode/mod-lottie v1.0.0 h1:1CUZMcgN5FAyjjyuP3qkaOQ6M5sv6HUAbosW4sIT5VE=
|
github.com/gethinode/mod-lottie v1.0.0 h1:1CUZMcgN5FAyjjyuP3qkaOQ6M5sv6HUAbosW4sIT5VE=
|
||||||
github.com/gethinode/mod-lottie v1.0.0/go.mod h1:erRCgSL2FCfKHI0jQbSpM+g0jXl7SjKVJrh7kWGteKs=
|
github.com/gethinode/mod-lottie v1.0.0/go.mod h1:erRCgSL2FCfKHI0jQbSpM+g0jXl7SjKVJrh7kWGteKs=
|
||||||
github.com/gethinode/mod-lottie v1.0.1 h1:+IE7xtnSVQpJS56oBJq9RWKZeFEfxrOZAqE3BSrS/u0=
|
github.com/gethinode/mod-lottie v1.0.1 h1:+IE7xtnSVQpJS56oBJq9RWKZeFEfxrOZAqE3BSrS/u0=
|
||||||
@@ -288,8 +296,12 @@ github.com/gethinode/mod-lottie v1.5.13 h1:Vth/OZDjfBZ9Kz5ew3tXGj9tU6w4StIta6qgf
|
|||||||
github.com/gethinode/mod-lottie v1.5.13/go.mod h1:tMFSUW9z3kC8IvDfs1ph9MGjuZFRBrpCnpodrwY+L4w=
|
github.com/gethinode/mod-lottie v1.5.13/go.mod h1:tMFSUW9z3kC8IvDfs1ph9MGjuZFRBrpCnpodrwY+L4w=
|
||||||
github.com/gethinode/mod-lottie v1.5.14 h1:17wmpi4XQzmwSB2HKNVa7c6ZzULrRnpKdowOFQQf0m8=
|
github.com/gethinode/mod-lottie v1.5.14 h1:17wmpi4XQzmwSB2HKNVa7c6ZzULrRnpKdowOFQQf0m8=
|
||||||
github.com/gethinode/mod-lottie v1.5.14/go.mod h1:VrjjmrwP/NIrLW7oDQyEAHdbeIRQfbr5BKjgKvI9Al4=
|
github.com/gethinode/mod-lottie v1.5.14/go.mod h1:VrjjmrwP/NIrLW7oDQyEAHdbeIRQfbr5BKjgKvI9Al4=
|
||||||
|
github.com/gethinode/mod-lottie v1.6.0 h1:O0ld9Q1rBWKb9HzuCuGPBfCegUcIqczMGNW2O/VjVYk=
|
||||||
|
github.com/gethinode/mod-lottie v1.6.0/go.mod h1:jZy8EJ6ldLnOXhpzayJ2STZ4hzykqkguFHWpN4aHxMo=
|
||||||
github.com/gethinode/mod-mermaid v1.1.23 h1:DA5iIdopb7f3wC+bfZ7J5HhcRUuVI/2j1+W/j5L/wwQ=
|
github.com/gethinode/mod-mermaid v1.1.23 h1:DA5iIdopb7f3wC+bfZ7J5HhcRUuVI/2j1+W/j5L/wwQ=
|
||||||
github.com/gethinode/mod-mermaid v1.1.23/go.mod h1:rw6vrY9DpdJblwFwLuXCdy2kBHxMf6gGKWeetwfTSfc=
|
github.com/gethinode/mod-mermaid v1.1.23/go.mod h1:rw6vrY9DpdJblwFwLuXCdy2kBHxMf6gGKWeetwfTSfc=
|
||||||
|
github.com/gethinode/mod-mermaid/v2 v2.0.1 h1:QcahIFCgmYAGsukQ0d+/L4IJtDwgXgv0WzilZ9poI9o=
|
||||||
|
github.com/gethinode/mod-mermaid/v2 v2.0.1/go.mod h1:kp3oUFAjKxuwzFbwxGWPEx5VQOu2ZHzcrwcNhDv08BI=
|
||||||
github.com/gethinode/mod-simple-datatables v1.0.0 h1:Dj4WGw12OkaimwkCpLn5Jhmd49dvNJW9O2P/W9F+HlQ=
|
github.com/gethinode/mod-simple-datatables v1.0.0 h1:Dj4WGw12OkaimwkCpLn5Jhmd49dvNJW9O2P/W9F+HlQ=
|
||||||
github.com/gethinode/mod-simple-datatables v1.0.0/go.mod h1:K8T7fIdb8pMOB+OSW4A5lz5IW99+HyzcTgx764fvOGw=
|
github.com/gethinode/mod-simple-datatables v1.0.0/go.mod h1:K8T7fIdb8pMOB+OSW4A5lz5IW99+HyzcTgx764fvOGw=
|
||||||
github.com/gethinode/mod-simple-datatables v1.0.2 h1:zhqxHet3iLQWYCBbGROALpOY9zQlptMycFkz1Tto5bA=
|
github.com/gethinode/mod-simple-datatables v1.0.2 h1:zhqxHet3iLQWYCBbGROALpOY9zQlptMycFkz1Tto5bA=
|
||||||
@@ -328,6 +340,8 @@ github.com/gethinode/mod-simple-datatables v1.1.6 h1:7nPeRwHlYbmlNEg7fBV6FyXqpxW
|
|||||||
github.com/gethinode/mod-simple-datatables v1.1.6/go.mod h1:bvMdmQFk4Hvyltf/QhMqUaApvPbIGTnbI3JLjOEh8go=
|
github.com/gethinode/mod-simple-datatables v1.1.6/go.mod h1:bvMdmQFk4Hvyltf/QhMqUaApvPbIGTnbI3JLjOEh8go=
|
||||||
github.com/gethinode/mod-simple-datatables v1.1.7 h1:wCY2bWFUxRHWbWzb/zefCACooCSbDPYKrZthfn+qAgM=
|
github.com/gethinode/mod-simple-datatables v1.1.7 h1:wCY2bWFUxRHWbWzb/zefCACooCSbDPYKrZthfn+qAgM=
|
||||||
github.com/gethinode/mod-simple-datatables v1.1.7/go.mod h1:FjkIEuxqeLLEqqDcz/nHAGHsRfV7EJP5Uhk4kYD8okY=
|
github.com/gethinode/mod-simple-datatables v1.1.7/go.mod h1:FjkIEuxqeLLEqqDcz/nHAGHsRfV7EJP5Uhk4kYD8okY=
|
||||||
|
github.com/gethinode/mod-simple-datatables/v2 v2.0.1 h1:ZwdI96n8dM2VLwdM/x+Vj7sa4tfiAUnkDj39jn+vkXc=
|
||||||
|
github.com/gethinode/mod-simple-datatables/v2 v2.0.1/go.mod h1:mmf1AOxpHdSRQnW2k7ExVWKTyzbG2hpsDRssmyASNb8=
|
||||||
github.com/gethinode/mod-utils v1.0.0 h1:cqHm2xS5uDiJzRm1KfHaNbq6uMVDKLhQa8/BuTZ1nhY=
|
github.com/gethinode/mod-utils v1.0.0 h1:cqHm2xS5uDiJzRm1KfHaNbq6uMVDKLhQa8/BuTZ1nhY=
|
||||||
github.com/gethinode/mod-utils v1.0.0/go.mod h1:ONJm3pHCq7nvaPNjusLZNCeCbhOhSBH4HVKHwK1FdYE=
|
github.com/gethinode/mod-utils v1.0.0/go.mod h1:ONJm3pHCq7nvaPNjusLZNCeCbhOhSBH4HVKHwK1FdYE=
|
||||||
github.com/gethinode/mod-utils v1.0.1 h1:jhZGlGFHHL1f5HXbBMXfiZ2gCz4TVafAzjnRPTIBSEE=
|
github.com/gethinode/mod-utils v1.0.1 h1:jhZGlGFHHL1f5HXbBMXfiZ2gCz4TVafAzjnRPTIBSEE=
|
||||||
@@ -420,6 +434,12 @@ github.com/gethinode/mod-utils/v3 v3.3.0 h1:qxuIavgL9LIyMhfCv8El+KL41rcNmQ8GaExn
|
|||||||
github.com/gethinode/mod-utils/v3 v3.3.0/go.mod h1:9iHYWiDpDlcyrGAOHniubK/kziJYhTsw7UpGM+u4MOM=
|
github.com/gethinode/mod-utils/v3 v3.3.0/go.mod h1:9iHYWiDpDlcyrGAOHniubK/kziJYhTsw7UpGM+u4MOM=
|
||||||
github.com/gethinode/mod-utils/v3 v3.3.1 h1:0mHrUyIwSkbiQIUuXpnptYDIizkI7Ak39RTgoRMbJfY=
|
github.com/gethinode/mod-utils/v3 v3.3.1 h1:0mHrUyIwSkbiQIUuXpnptYDIizkI7Ak39RTgoRMbJfY=
|
||||||
github.com/gethinode/mod-utils/v3 v3.3.1/go.mod h1:9iHYWiDpDlcyrGAOHniubK/kziJYhTsw7UpGM+u4MOM=
|
github.com/gethinode/mod-utils/v3 v3.3.1/go.mod h1:9iHYWiDpDlcyrGAOHniubK/kziJYhTsw7UpGM+u4MOM=
|
||||||
|
github.com/gethinode/mod-utils/v4 v4.5.0 h1:p6sDsMNA/KE2IK3SPdWjFX3cPAwPP5gDxzJu2tIWYl4=
|
||||||
|
github.com/gethinode/mod-utils/v4 v4.5.0/go.mod h1:bYmvRdAo4ICy5MpSGafDvO4p5bTDpsDKFCPL3bH0mN4=
|
||||||
|
github.com/gethinode/mod-utils/v4 v4.5.1 h1:VKmqi6+oC93noHUJ6HvFlelglHT/9+kXQjpJs7VtWko=
|
||||||
|
github.com/gethinode/mod-utils/v4 v4.5.1/go.mod h1:bYmvRdAo4ICy5MpSGafDvO4p5bTDpsDKFCPL3bH0mN4=
|
||||||
|
github.com/gethinode/mod-utils/v4 v4.6.0 h1:XQ7hiCrn15SzgkcD0j53XVZPQYeQKUxg/UUkr80pJ2w=
|
||||||
|
github.com/gethinode/mod-utils/v4 v4.6.0/go.mod h1:bYmvRdAo4ICy5MpSGafDvO4p5bTDpsDKFCPL3bH0mN4=
|
||||||
github.com/nextapps-de/flexsearch v0.0.0-20230711092928-1243fd883ec3 h1:H/qVR5O4BXjRjD+5PZB+r4ug2BSJ2Of4RtwOntd+OKo=
|
github.com/nextapps-de/flexsearch v0.0.0-20230711092928-1243fd883ec3 h1:H/qVR5O4BXjRjD+5PZB+r4ug2BSJ2Of4RtwOntd+OKo=
|
||||||
github.com/nextapps-de/flexsearch v0.0.0-20230711092928-1243fd883ec3/go.mod h1:5GdMfPAXzbA2gXBqTjC6l27kioSYzHlqDMh0+wyx7sU=
|
github.com/nextapps-de/flexsearch v0.0.0-20230711092928-1243fd883ec3/go.mod h1:5GdMfPAXzbA2gXBqTjC6l27kioSYzHlqDMh0+wyx7sU=
|
||||||
github.com/nextapps-de/flexsearch v0.0.0-20240108021025-afd75f742f22 h1:re7L8FxbXQpnX8BgzkdUnDpsUmloGNyLmiy2ZCln8pg=
|
github.com/nextapps-de/flexsearch v0.0.0-20240108021025-afd75f742f22 h1:re7L8FxbXQpnX8BgzkdUnDpsUmloGNyLmiy2ZCln8pg=
|
||||||
@@ -450,3 +470,5 @@ github.com/twbs/bootstrap v5.3.5+incompatible h1:6XrrFNMsiTTFcVTBf2886FO2XUNtwSE
|
|||||||
github.com/twbs/bootstrap v5.3.5+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
|
github.com/twbs/bootstrap v5.3.5+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
|
||||||
github.com/twbs/bootstrap v5.3.6+incompatible h1:efmXVyq839m5QQ0+JBUdQQ1TrmoBqvQ5kRhUueKsH+4=
|
github.com/twbs/bootstrap v5.3.6+incompatible h1:efmXVyq839m5QQ0+JBUdQQ1TrmoBqvQ5kRhUueKsH+4=
|
||||||
github.com/twbs/bootstrap v5.3.6+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
|
github.com/twbs/bootstrap v5.3.6+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
|
||||||
|
github.com/twbs/bootstrap v5.3.7+incompatible h1:ea1W8TOWZFkqSK2M0McpgzLiUQVru3bz8aHb0j/XtuM=
|
||||||
|
github.com/twbs/bootstrap v5.3.7+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
|
||||||
|
@@ -31,9 +31,9 @@
|
|||||||
"use"
|
"use"
|
||||||
],
|
],
|
||||||
"classes": [
|
"classes": [
|
||||||
"%!s(<nil>)",
|
|
||||||
"active",
|
"active",
|
||||||
"align-items-center",
|
"align-items-center",
|
||||||
|
"align-items-start",
|
||||||
"align-self-center",
|
"align-self-center",
|
||||||
"align-self-end",
|
"align-self-end",
|
||||||
"ball",
|
"ball",
|
||||||
@@ -50,11 +50,11 @@
|
|||||||
"btn-primary",
|
"btn-primary",
|
||||||
"checkbox",
|
"checkbox",
|
||||||
"col",
|
"col",
|
||||||
"col-10",
|
|
||||||
"col-12",
|
"col-12",
|
||||||
"col-6",
|
"col-6",
|
||||||
"col-8",
|
"col-8",
|
||||||
"col-md-",
|
"col-md-1",
|
||||||
|
"col-md-11",
|
||||||
"col-md-2",
|
"col-md-2",
|
||||||
"col-md-6",
|
"col-md-6",
|
||||||
"col-md-8",
|
"col-md-8",
|
||||||
@@ -92,10 +92,10 @@
|
|||||||
"fixed-top",
|
"fixed-top",
|
||||||
"flex-column",
|
"flex-column",
|
||||||
"flex-fill",
|
"flex-fill",
|
||||||
|
"flex-grow-1",
|
||||||
"footer",
|
"footer",
|
||||||
"form-control",
|
"form-control",
|
||||||
"fs-3",
|
"fs-3",
|
||||||
"fullscreen",
|
|
||||||
"fw-30",
|
"fw-30",
|
||||||
"fw-bold",
|
"fw-bold",
|
||||||
"h-100",
|
"h-100",
|
||||||
@@ -111,12 +111,14 @@
|
|||||||
"is-search",
|
"is-search",
|
||||||
"justify-content-center",
|
"justify-content-center",
|
||||||
"justify-content-end",
|
"justify-content-end",
|
||||||
|
"justify-content-md-start",
|
||||||
"justify-content-start",
|
"justify-content-start",
|
||||||
"label",
|
"label",
|
||||||
"lead",
|
"lead",
|
||||||
"link-bg-footer",
|
"link-bg-footer",
|
||||||
"link-secondary",
|
"link-secondary",
|
||||||
"main-content",
|
"m-auto",
|
||||||
|
"main",
|
||||||
"main-nav-toggler",
|
"main-nav-toggler",
|
||||||
"me-auto",
|
"me-auto",
|
||||||
"middle-bar",
|
"middle-bar",
|
||||||
@@ -156,19 +158,15 @@
|
|||||||
"ps-1",
|
"ps-1",
|
||||||
"pt-1",
|
"pt-1",
|
||||||
"pt-4",
|
"pt-4",
|
||||||
"pt-5",
|
|
||||||
"pt-md-0",
|
"pt-md-0",
|
||||||
"pt-md-3",
|
|
||||||
"px-4",
|
"px-4",
|
||||||
"px-xxl-0",
|
"px-xxl-0",
|
||||||
"py-3",
|
"py-3",
|
||||||
"py-4",
|
"py-4",
|
||||||
"py-md-5",
|
|
||||||
"rounded",
|
"rounded",
|
||||||
"row",
|
"row",
|
||||||
"row-cols-1",
|
"row-cols-1",
|
||||||
"row-cols-2",
|
"row-cols-2",
|
||||||
"row-cols-md-2",
|
|
||||||
"row-cols-sm-3",
|
"row-cols-sm-3",
|
||||||
"search",
|
"search",
|
||||||
"search-input",
|
"search-input",
|
||||||
@@ -179,6 +177,7 @@
|
|||||||
"text-body",
|
"text-body",
|
||||||
"text-center",
|
"text-center",
|
||||||
"text-decoration-none",
|
"text-decoration-none",
|
||||||
|
"text-md-start",
|
||||||
"text-muted",
|
"text-muted",
|
||||||
"text-secondary",
|
"text-secondary",
|
||||||
"text-sm-start",
|
"text-sm-start",
|
||||||
|
@@ -45,7 +45,7 @@
|
|||||||
|
|
||||||
{{ $comment := $val.comment }}
|
{{ $comment := $val.comment }}
|
||||||
{{ if $val.deprecated }}
|
{{ if $val.deprecated }}
|
||||||
{{ $btn := printf `{{< release version="%s" short="true" button-size="sm" inline="true" release-state="deprecated" >}}` $val.deprecated }}
|
{{ $btn := printf `{{< release version="%s" short="true" button-size="xs" inline="true" release-state="deprecated" >}}` $val.deprecated }}
|
||||||
{{ with $val.alternative }}
|
{{ with $val.alternative }}
|
||||||
{{ $comment = printf "%s **%s**. %s" $btn (T "alternativeFeature" .) $comment }}
|
{{ $comment = printf "%s **%s**. %s" $btn (T "alternativeFeature" .) $comment }}
|
||||||
{{ else }}
|
{{ else }}
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ if $val.release }}
|
{{ if $val.release }}
|
||||||
{{ $comment = printf `{{< release version="%s" short="true" button-size="sm" inline="true" >}} %s` $val.release $comment }}
|
{{ $comment = printf `{{< release version="%s" short="true" button-size="xs" inline="true" >}} %s` $val.release $comment }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ $min := "" }}
|
{{ $min := "" }}
|
||||||
|
@@ -33,8 +33,7 @@
|
|||||||
{{- with $args.tooltip }}{{ $tooltip = . }}{{ end -}}
|
{{- with $args.tooltip }}{{ $tooltip = . }}{{ end -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
{{- $href := .href -}}
|
{{- $href := $args.href -}}
|
||||||
|
|
||||||
{{ $linkType := or $args.linkType $args.type }}
|
{{ $linkType := or $args.linkType $args.type }}
|
||||||
{{ $buttonSize := or $args.buttonSize $args.size }}
|
{{ $buttonSize := or $args.buttonSize $args.size }}
|
||||||
{{ $toastID := or $args.toastId $args.toast }}
|
{{ $toastID := or $args.toastId $args.toast }}
|
||||||
@@ -74,13 +73,21 @@
|
|||||||
|
|
||||||
{{/* Main code */}}
|
{{/* Main code */}}
|
||||||
{{ if not $error }}
|
{{ if not $error }}
|
||||||
|
{{- $btnClass := "" -}}
|
||||||
|
{{- if eq $linkType "button" }}
|
||||||
|
{{- $btnClass = printf "btn btn-%s%s" (cond $args.outline "outline-" "") $args.color -}}
|
||||||
|
{{- if ne $buttonSize "md" }}{{ $btnClass = printf "%s btn-%s" $btnClass $buttonSize }}{{ end -}}
|
||||||
|
{{- if in (slice "disabled" "active") $state }}{{ $btnClass = printf "%s %s" $btnClass $state }}{{ end -}}
|
||||||
|
{{- $btnClass = printf "%s position-relative %s" $btnClass $class }}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
<a aria-label="{{ (or $label $title) | safeHTML }}"
|
<a aria-label="{{ (or $label $title) | safeHTML }}"
|
||||||
{{ if ne $state "disabled" }}{{ with $href }}href="{{ . }}"{{ end }}{{ end -}}
|
{{ if ne $state "disabled" }}{{ with $href }}href="{{ . }}"{{ end }}{{ end -}}
|
||||||
{{- with $args.id }} id="{{ . }}"{{ end -}}
|
{{- with $args.id }} id="{{ . }}"{{ end -}}
|
||||||
{{- with $target }} target="{{ . }}"{{ end }}{{ with $rel }} rel="{{ . }}"{{ end -}}
|
{{- with $target }} target="{{ . }}"{{ end }}{{ with $rel }} rel="{{ . }}"{{ end -}}
|
||||||
{{- with $toastID }} data-toast-target="{{ . }}"{{ end -}}
|
{{- with $toastID }} data-toast-target="{{ . }}"{{ end -}}
|
||||||
{{- with $args.clipboard }} data-clipboard="{{ . }}"{{ end -}}
|
{{- with $args.clipboard }} data-clipboard="{{ . }}"{{ end -}}
|
||||||
{{- if eq $linkType "button" }} class="btn btn-{{ if $args.outline }}outline-{{ end }}{{ $args.color }} {{ if ne $buttonSize "md" }}btn-{{ $args.size }}{{ end }} position-relative {{ if in (slice "disabled" "active") $args.state }}{{ $args.state }}{{ end }} {{ $class -}}"
|
{{- with $btnClass }} class="{{ . }}"
|
||||||
{{ if eq $state "disabled" }}aria-disabled="true"{{ end -}}
|
{{ if eq $state "disabled" }}aria-disabled="true"{{ end -}}
|
||||||
{{- else }} class="btn btn-link link-{{ $args.color }} position-relative {{ $class }}"{{ end -}}
|
{{- else }} class="btn btn-link link-{{ $args.color }} position-relative {{ $class }}"{{ end -}}
|
||||||
{{- with $tooltip }} data-bs-toggle="tooltip" data-bs-title="{{ . }}" data-bs-placement="{{ $args.placement }}"{{ end -}}
|
{{- with $tooltip }} data-bs-toggle="tooltip" data-bs-title="{{ . }}" data-bs-placement="{{ $args.placement }}"{{ end -}}
|
||||||
|
@@ -203,9 +203,22 @@
|
|||||||
{{- end -}}
|
{{- end -}}
|
||||||
<div class="{{ $col2 }}">
|
<div class="{{ $col2 }}">
|
||||||
<div class="card-body d-flex p-{{ $args.padding }} flex-column h-100 flex-fill">
|
<div class="card-body d-flex p-{{ $args.padding }} flex-column h-100 flex-fill">
|
||||||
{{ if $page }}<div>{{ partial "inline/card-caption.html" (dict "page" $page "keywords" $args.headerStyle "color" $args.color) }}</div>{{ end }}
|
{{ if $page }}
|
||||||
|
<div>{{ partial "inline/card-caption.html" (dict
|
||||||
|
"page" $page
|
||||||
|
"keywords" $args.headerStyle
|
||||||
|
"color" $args.color
|
||||||
|
) }}
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
<div class="flex-fill">
|
<div class="flex-fill">
|
||||||
{{- partial "inline/card-body.html" (dict "title" $title "href" $href "color" $args.color "description" $description "button" $args.button) -}}
|
{{- partial "inline/card-body.html" (dict
|
||||||
|
"title" $title
|
||||||
|
"href" $href
|
||||||
|
"color" $args.color
|
||||||
|
"description" $description
|
||||||
|
"button" $args.button
|
||||||
|
) -}}
|
||||||
</div>
|
</div>
|
||||||
{{ if $page }}<div>{{ partial "inline/card-caption.html" (dict "page" $page "keywords" $args.footerStyle "color" $args.color) }}</div>{{ end }}
|
{{ if $page }}<div>{{ partial "inline/card-caption.html" (dict "page" $page "keywords" $args.footerStyle "color" $args.color) }}</div>{{ end }}
|
||||||
{{ if and $href $args.button }}
|
{{ if and $href $args.button }}
|
||||||
|
@@ -20,21 +20,23 @@
|
|||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{/* Initialize local arguments */}}
|
{{/* Initialize local arguments */}}
|
||||||
{{ $dim := "" }}
|
{{ $dim := slice }}
|
||||||
{{ $default := dict "4x3" "1400x1050" "3x2" "1400x933" "1x1" "1400x1400" "16x9" "1400x788" "21x9" "1400x600" "auto" "1400" }}
|
{{ $default := dict "4x3" "1400x1050" "3x2" "1400x933" "1x1" "1400x1400" "16x9" "1400x788" "21x9" "1400x600" "auto" "1400" }}
|
||||||
|
|
||||||
{{/* Initialize dimensions data - stripping unsupported file extension */}}
|
{{ if not $args.err }}
|
||||||
{{ $config := "dimensions" }}
|
{{/* Initialize dimensions data - stripping unsupported file extension */}}
|
||||||
{{ with index site.Params "dam" }}{{ with index . "dimensions" }}{{ $config = . }}{{ end }}{{ end }}
|
{{ $config := "dimensions" }}
|
||||||
{{ $config = path.Join (path.Dir $config) (path.BaseName $config) }}
|
{{ with index site.Params "dam" }}{{ with index . "dimensions" }}{{ $config = . }}{{ end }}{{ end }}
|
||||||
|
{{ $config = path.Join (path.Dir $config) (path.BaseName $config) }}
|
||||||
|
|
||||||
{{ with index site.Data $config }}
|
{{ with index site.Data $config }}
|
||||||
{{ $matches := first 1 (where . "ratio" $args.ratio) }}
|
{{ $matches := first 1 (where . "ratio" $args.ratio) }}
|
||||||
{{ if eq ($matches | len) 1 }}
|
{{ if eq ($matches | len) 1 }}
|
||||||
{{ $dim = (index $matches 0).dimensions }}
|
{{ $dim = (index $matches 0).dimensions }}
|
||||||
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
{{ if not $dim }}{{ $dim = slice (index $default $args.ratio) }}{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ if not $dim }}{{ $dim = slice (index $default $args.ratio) }}{{ end }}
|
|
||||||
|
|
||||||
{{ return $dim }}
|
{{ return $dim }}
|
||||||
|
@@ -51,6 +51,17 @@
|
|||||||
{{- $width := index $target "width" -}}
|
{{- $width := index $target "width" -}}
|
||||||
{{- $data := index $target "data" -}}
|
{{- $data := index $target "data" -}}
|
||||||
|
|
||||||
|
{{ if and $args.imageWidth $args.imageHeight }}
|
||||||
|
{{ $height = $args.imageHeight }}
|
||||||
|
{{ $width = $args.imageWidth }}
|
||||||
|
{{ else if and $args.imageWidth $height $width }}
|
||||||
|
{{ $height = int (math.Round (mul (div (float $args.imageWidth) $width) $height)) }}
|
||||||
|
{{ $width = $args.imageWidth }}
|
||||||
|
{{ else if and $args.imageHeight $height $width }}
|
||||||
|
{{ $width = int (math.Round (mul (div (float $args.imageHeight) $height) $width)) }}
|
||||||
|
{{ $height = $args.imageHeight }}
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
{{/* Add color modes */}}
|
{{/* Add color modes */}}
|
||||||
{{- range $none := $modes -}}
|
{{- range $none := $modes -}}
|
||||||
{{- if ne $none $args.colorMode -}}
|
{{- if ne $none $args.colorMode -}}
|
||||||
@@ -81,7 +92,12 @@
|
|||||||
{{ with $width }} width="{{ . }}"{{ end -}}
|
{{ with $width }} width="{{ . }}"{{ end -}}
|
||||||
{{ with $alt }} alt="{{ . }}"{{ end }}>
|
{{ with $alt }} alt="{{ . }}"{{ end }}>
|
||||||
{{- else -}}
|
{{- else -}}
|
||||||
<svg class="{{ $args.class }}">
|
<svg class="{{ $args.class }}"
|
||||||
|
{{ if or $args.imageHeight $args.imageWidth }}
|
||||||
|
{{ with $width }} width="{{ . }}"{{ end }}
|
||||||
|
{{ with $height }} height="{{ . }}"{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
>
|
||||||
<use href="{{ $fallbackURL }}#{{ $fileAnchor }}"></use>
|
<use href="{{ $fallbackURL }}#{{ $fileAnchor }}"></use>
|
||||||
</svg>
|
</svg>
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
@@ -110,7 +110,7 @@
|
|||||||
{{ $title | safeHTML }}
|
{{ $title | safeHTML }}
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{/* Render horizontal component */}}
|
{{/* Render horizontal component */}}
|
||||||
<div class="row row-cols-1 {{ if eq $args.orientation "stacked" }}row-cols-md-2 {{ end }} w-100">
|
<div class="row row-cols-1 {{ if eq $args.orientation "stacked" }}row-cols-md-2 {{ end }} flex-grow-1">
|
||||||
{{ $order1 := "order-1 order-md-0" }}
|
{{ $order1 := "order-1 order-md-0" }}
|
||||||
{{ $order2 := "order-0 order-md-1" }}
|
{{ $order2 := "order-0 order-md-1" }}
|
||||||
{{ if eq $args.order "first" }}
|
{{ if eq $args.order "first" }}
|
||||||
|
@@ -38,6 +38,8 @@
|
|||||||
"page" $args.page
|
"page" $args.page
|
||||||
"ratio" $args.ratio
|
"ratio" $args.ratio
|
||||||
"portrait" $args.portrait
|
"portrait" $args.portrait
|
||||||
|
"image-width" $args.imageWidth
|
||||||
|
"image-height" $args.imageHeight
|
||||||
"wrapper" $args.wrapper
|
"wrapper" $args.wrapper
|
||||||
"class" $args.class
|
"class" $args.class
|
||||||
"title" $args.title
|
"title" $args.title
|
||||||
|
@@ -98,6 +98,6 @@
|
|||||||
{{ partial "links-content.html" (dict "links" $args.links "justify" $args.justify "type" $args.linkType "li" false) }}
|
{{ partial "links-content.html" (dict "links" $args.links "justify" $args.justify "type" $args.linkType "li" false) }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="d-{{ $breakpoint.current }}-none">
|
<div class="d-{{ $breakpoint.current }}-none pt-{{ $padding.y }}">
|
||||||
{{ partial "links-content.html" (dict "links" $args.links "justify" $args.justify "type" $args.linkType "li" true) }}
|
{{ partial "links-content.html" (dict "links" $args.links "justify" $args.justify "type" $args.linkType "li" true) }}
|
||||||
</div>
|
</div>
|
||||||
|
@@ -117,48 +117,16 @@
|
|||||||
{{- $enableLanguage := or $page.IsTranslated hugo.IsMultilingual -}}
|
{{- $enableLanguage := or $page.IsTranslated hugo.IsMultilingual -}}
|
||||||
{{- $horizontal := default false site.Params.navigation.horizontal -}}
|
{{- $horizontal := default false site.Params.navigation.horizontal -}}
|
||||||
|
|
||||||
{{- $logo := $args.logo | default site.Params.navigation.logo -}}
|
|
||||||
{{- $logoLight := "" -}}
|
|
||||||
{{- $logoDark := "" -}}
|
|
||||||
{{- if $enableDarkMode -}}
|
|
||||||
{{ $ext := path.Ext $logo -}}
|
|
||||||
{{- $ext := path.Ext $logo -}}
|
|
||||||
{{- $base := strings.TrimSuffix $ext $logo -}}
|
|
||||||
{{- range $suffix := $modes -}}
|
|
||||||
{{- $base = strings.TrimSuffix (printf "-%s" $suffix) $base -}}
|
|
||||||
{{- end -}}
|
|
||||||
|
|
||||||
{{- $logoLight = printf "%s-light%s" $base $ext -}}
|
|
||||||
{{- $logoDark = printf "%s-dark%s" $base $ext -}}
|
|
||||||
|
|
||||||
{{- $light := fileExists (path.Join "/static" $logoLight) -}}
|
|
||||||
{{- $dark := fileExists (path.Join "/static" $logoDark) -}}
|
|
||||||
{{- if and $light (not $dark) -}}
|
|
||||||
{{- warnf "partial [assets/navbar.html] - Missing file: %s" $logoDark -}}
|
|
||||||
{{- $logoLight = "" -}}
|
|
||||||
{{- $logoDark = "" -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- if and (not $light) $dark -}}
|
|
||||||
{{- warnf "partial [assets/navbar.html] - Missing file: %s" $logoLight -}}
|
|
||||||
{{- $logoLight = "" -}}
|
|
||||||
{{- $logoDark = "" -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- if not (or $light $dark) -}}
|
|
||||||
{{- $logoLight = "" -}}
|
|
||||||
{{- $logoDark = "" -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- end -}}
|
|
||||||
|
|
||||||
{{ if $logo }}{{ $logo = partial "utilities/URLJoin.html" (dict "base" $baseURL "path" $logo) }}{{ end }}
|
|
||||||
{{ if $logoLight }}{{ $logoLight = partial "utilities/URLJoin.html" (dict "base" $baseURL "path" $logoLight) }}{{ end }}
|
|
||||||
{{ if $logoDark }}{{ $logoDark = partial "utilities/URLJoin.html" (dict "base" $baseURL "path" $logoDark) }}{{ end }}
|
|
||||||
|
|
||||||
{{- $title := site.Title -}}
|
{{- $title := site.Title -}}
|
||||||
{{- if $args.title -}}
|
{{- if $args.title -}}
|
||||||
{{- $title = $args.title -}}
|
{{- $title = $args.title -}}
|
||||||
{{- if not $args.logo }}{{ $logo = "" }}{{ end -}}
|
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{ $logo := "" }}
|
||||||
|
{{ with $args.logo | default site.Params.navigation.logo }}
|
||||||
|
{{ $logo = partial "assets/image.html" (dict "src" . "loading" "eager" "title" $title "image-height" 30) }}
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
{{- $pre := $args.pre -}}
|
{{- $pre := $args.pre -}}
|
||||||
{{- $post := $args.post -}}
|
{{- $post := $args.post -}}
|
||||||
{{- $class := $args.class -}}
|
{{- $class := $args.class -}}
|
||||||
@@ -201,18 +169,9 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{/* Insert the brand logo or name */}}
|
{{/* Insert the brand logo or name */}}
|
||||||
<div class="{{ if (or $logoLight $logo) }}mx-auto{{ else }}flex-grow-1 flex-{{ $args.breakpoint }}-grow-0{{ end }}">
|
<div class="{{ if $logo }}mx-auto{{ else }}flex-grow-1 flex-{{ $args.breakpoint }}-grow-0{{ end }}">
|
||||||
<a class="navbar-brand" href="{{ site.Home.RelPermalink }}" aria-label="{{ T "home" }}">
|
<a class="navbar-brand" href="{{ site.Home.RelPermalink }}" aria-label="{{ T "home" }}">
|
||||||
{{- if (and $logoLight $logoDark) -}}
|
{{- with $logo -}}{{ . }}{{- else -}}<div class="navbar-title fw-bold h-100">{{ $title }}</div>{{- end -}}
|
||||||
{{ $width := partial "utilities/GetWidth.html" (dict "path" $logoLight "height" 30) }}
|
|
||||||
<img src="{{if $absoluteURL }}{{ absURL $logoLight }}{{ else }}{{ $logoLight }}{{ end }}" class="d-none-inline-dark" alt="{{ $title }} logo" height="30"{{ with $width }} width="{{ . }}"{{ end }}>
|
|
||||||
<img src="{{if $absoluteURL }}{{ absURL $logoDark }}{{ else }}{{ $logoDark }}{{ end }}" class="d-none-inline-light" alt="{{ $title }} logo" height="30"{{ with $width }} width="{{ . }}"{{ end }}>
|
|
||||||
{{- else if $logo -}}
|
|
||||||
{{ $width := partial "utilities/GetWidth.html" (dict "path" $logo "height" 30) }}
|
|
||||||
<img src="{{if $absoluteURL }}{{ absURL $logo }}{{ else }}{{ $logo }}{{ end }}" alt="{{ $title }} logo" height="30"{{ with $width }} width="{{ . }}"{{ end }}>
|
|
||||||
{{- else -}}
|
|
||||||
<div class="navbar-title fw-bold h-100">{{ $title }}</div>
|
|
||||||
{{- end -}}
|
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@@ -1,125 +0,0 @@
|
|||||||
{{- $page := .page -}}
|
|
||||||
{{- $headings := .headings -}}
|
|
||||||
{{- $orientation := .orientation | default "stacked" -}}
|
|
||||||
{{- $actions := .actions -}}
|
|
||||||
{{- $width := .width | default 6 }}
|
|
||||||
{{ $sizes := "100vw" }}
|
|
||||||
{{- if or (lt $width 1) (gt $width 12) -}}
|
|
||||||
{{- $width = 6 -}}
|
|
||||||
{{- warnf "partial [list/featured.html] - Invalid column width: %d" $width -}}
|
|
||||||
{{ end -}}
|
|
||||||
{{- $justify := .justify | default "center" -}}
|
|
||||||
{{- $supportedJustify := slice "start" "end" "center" "between" "around" "evenly" -}}
|
|
||||||
{{- if not (in $supportedJustify $justify) -}}
|
|
||||||
{{- errorf "partial [list/featured.html] - Invalid value for param 'justify': %s" $justify -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- $align := .align | default "center" -}}
|
|
||||||
{{- $supportedAlign := slice "start" "end" "center" -}}
|
|
||||||
{{- if not (in $supportedAlign $align) -}}
|
|
||||||
{{- errorf "partial [list/featured.html] - Invalid value for param 'align': %s" $align -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- $breadcrumb := and (not $page.IsHome) site.Params.navigation.breadcrumb -}}
|
|
||||||
|
|
||||||
{{- define "_partials/inline/featured-sizes.html" }}
|
|
||||||
{{ $sizes := printf "(min-width: 768px) %dvw, 50vw" (int (math.Round (div (mul .width 100) 12))) }}
|
|
||||||
{{ return $sizes }}
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
{{- define "_partials/inline/featured-body.html" }}
|
|
||||||
{{- $page := .page -}}
|
|
||||||
{{- $headings := .headings -}}
|
|
||||||
{{- $orientation := .orientation | default "stacked" -}}
|
|
||||||
{{- $actions := .actions -}}
|
|
||||||
{{- $align := .align | default "center" -}}
|
|
||||||
|
|
||||||
<div class="text-{{ $align }}">
|
|
||||||
{{ $title := $page.Title }}
|
|
||||||
{{ if site.Params.main.titleCase }}{{ $title = title $title }}{{ end }}
|
|
||||||
|
|
||||||
{{ with $title }}<p class="display-4">{{ . }}</p>{{ end }}
|
|
||||||
<span class="fs-5 text-muted">{{ $page.Description }}</span>
|
|
||||||
|
|
||||||
{{ if $actions }}
|
|
||||||
{{- $actions = sort $actions "weight" "asc" -}}
|
|
||||||
<div class="hstack{{ if gt (len $actions) 1 }} gap-1{{ end }} justify-content-{{ $align}} pt-5 pt-md-3">
|
|
||||||
{{ range $actions }}
|
|
||||||
{{ partial "assets/button.html" (dict
|
|
||||||
"href" .url
|
|
||||||
"icon" .icon
|
|
||||||
"label" .label
|
|
||||||
"title" .title
|
|
||||||
"outline" .outline
|
|
||||||
"order" "last"
|
|
||||||
"justify" "start"
|
|
||||||
) }}
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
{{- end -}}
|
|
||||||
|
|
||||||
{{- define "_partials/inline/featured-illustration.html" }}
|
|
||||||
{{- $page := .page -}}
|
|
||||||
{{- $style := printf "img-wrap mx-auto mx-md-0 %s" .style -}}
|
|
||||||
{{ $sizes := .sizes }}
|
|
||||||
|
|
||||||
{{ if $page.Params.icon }}
|
|
||||||
{{- $icon := (or (and (reflect.IsMap $page.Params.Icon) $page.Params.Icon.url) $page.Params.Icon) -}}
|
|
||||||
{{- $mode := and (reflect.IsMap $page.Params.Icon) $page.Params.Icon.mode -}}
|
|
||||||
{{ if eq (lower (path.Ext $icon)) ".json" }}
|
|
||||||
{{ partial "assets/animation.html" (dict "data" $icon "mode" $mode "loop" false "hover" true "class" "col-6 mx-auto text-center") }}
|
|
||||||
{{ else }}
|
|
||||||
{{ partial "assets/icon.html" (dict "icon" "mode" $mode $icon "wrapper" "col-6 mx-auto text-center")}}
|
|
||||||
{{ end }}
|
|
||||||
{{ else }}
|
|
||||||
{{- $thumbnail := "" -}}
|
|
||||||
{{ if reflect.IsMap $page.Params.Thumbnail }}{{ $thumbnail = $page.Params.Thumbnail.url }}{{ else }}{{ $thumbnail = $page.Params.Thumbnail }}{{ end }}
|
|
||||||
{{- if $thumbnail }}
|
|
||||||
{{ partial "assets/image.html" (dict
|
|
||||||
"src" $thumbnail
|
|
||||||
"ratio" "16x9"
|
|
||||||
"sizes" $sizes
|
|
||||||
"wrapper" $style
|
|
||||||
"class" "rounded"
|
|
||||||
"title" $page.Site.Title
|
|
||||||
"priority" "high"
|
|
||||||
) }}
|
|
||||||
{{ end }}
|
|
||||||
{{ end }}
|
|
||||||
{{- end -}}
|
|
||||||
|
|
||||||
<div class="container-fluid p-0 {{ with site.Params.home.feature.color }} bg-{{ . }} bg-opacity-{{ site.Params.style.themeOpacity | default "25" | safeHTML }}{{ end }}">
|
|
||||||
<div class="container-xxl p-4 px-xxl-0 {{ if site.Params.home.fullCover }} fullcover{{ end }} d-flex flex-column">
|
|
||||||
{{ if $breadcrumb }}
|
|
||||||
<div>{{ partial "assets/breadcrumb.html" (dict "page" $page) }}</div>
|
|
||||||
{{ end -}}
|
|
||||||
|
|
||||||
{{ if eq $orientation "stacked" }}
|
|
||||||
<div class="row justify-content-center flex-fill">
|
|
||||||
<div class="col-12 col-md-{{ $width }} m-auto text-center">
|
|
||||||
{{ $sizes = partial "inline/featured-sizes.html" (dict "width" $width) }}
|
|
||||||
{{ partial "inline/featured-illustration.html" (dict "page" $page "sizes" $sizes "style" "pb-4") }}
|
|
||||||
{{ partial "inline/featured-body.html" (dict "page" $page "headings" $headings "orientation" $orientation "actions" $actions) }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{{ else }}
|
|
||||||
<div class="row row-cols-1 row-cols-md-2 justify-content-{{ $justify }} flex-fill">
|
|
||||||
<div class="col col-12 col-md-{{ $width }} order-1 order-md-0 my-md-auto">
|
|
||||||
{{ partial "inline/featured-body.html" (dict "page" $page "headings" $headings "orientation" $orientation "actions" $actions "align" $align) }}
|
|
||||||
</div>
|
|
||||||
{{ $newWidth := $width }}
|
|
||||||
{{ if gt $width 6 }}{{ $newWidth = sub 12 $width }}{{ end }}
|
|
||||||
{{ $sizes = partial "inline/featured-sizes.html" (dict "width" $newWidth) }}
|
|
||||||
<div class="col col-12 col-md-{{ $newWidth }} order-0 order-md-1 text-center my-md-auto align-self-end">
|
|
||||||
{{ partial "inline/featured-illustration.html" (dict "page" $page "sizes" $sizes "style" "pb-4 pb-md-0") }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
{{ with $headings }}
|
|
||||||
<div class="col col-12 p-0 pt-5">
|
|
||||||
{{ partial "assets/toc-main.html" (dict "headings" .) }}
|
|
||||||
</div>
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
@@ -33,10 +33,6 @@
|
|||||||
{{ end }}
|
{{ end }}
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{- $thumbnail = $page.Params.Thumbnail -}}
|
{{- $thumbnail = $page.Params.Thumbnail -}}
|
||||||
{{ if or $page.Params.photoCredits $page.Params.photoSource }}
|
|
||||||
{{ warnf "DEPRECATED: frontmatter variables `photoCredits` and `photoSource` have been deprecated in release v0.18: %s" $page.RelPermalink }}
|
|
||||||
{{ end }}
|
|
||||||
{{- if and $page.Params.photoCredits $page.Params.PhotoSource }}{{ $credits = printf (T "photoFull") $page.Params.photoCredits $page.Params.PhotoSource }}{{ end -}}
|
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
{{ if $thumbnail -}}
|
{{ if $thumbnail -}}
|
@@ -1,20 +0,0 @@
|
|||||||
{{- /* Define main padding size */ -}}
|
|
||||||
{{- $defaultY := 5 -}}
|
|
||||||
{{- $defaultX := 5 -}}
|
|
||||||
{{- $permitted := slice 0 1 2 3 4 5 }}
|
|
||||||
{{- $paddingX := $defaultX -}}
|
|
||||||
{{- if isset site.Params.main.padding "x" }}{{ $paddingX = site.Params.main.padding.x }}{{ end -}}
|
|
||||||
{{- $paddingY := $defaultY -}}
|
|
||||||
{{- if isset site.Params.main.padding "y" }}{{ $paddingY = site.Params.main.padding.y }}{{ end -}}
|
|
||||||
|
|
||||||
{{- if not (in $permitted $paddingX) -}}
|
|
||||||
{{- warnf "layout [_default/baseof.html] - Invalid value for param 'padding.x': %d" $paddingX -}}
|
|
||||||
{{- $paddingX = $defaultX -}}
|
|
||||||
{{- end -}}
|
|
||||||
|
|
||||||
{{- if not (in $permitted $paddingY) -}}
|
|
||||||
{{- warnf "layout [_default/baseof.html] - Invalid value for param 'padding.y': %d" $paddingY -}}
|
|
||||||
{{- $paddingY = $defaultY -}}
|
|
||||||
{{- end -}}
|
|
||||||
|
|
||||||
{{- return (dict "x" $paddingX "y" $paddingY) -}}
|
|
@@ -26,27 +26,27 @@
|
|||||||
{{- $class := partial "utilities/GetArgParent" (dict "page" . "arg" "class" "merge" true) -}}
|
{{- $class := partial "utilities/GetArgParent" (dict "page" . "arg" "class" "merge" true) -}}
|
||||||
{{- $color := partial "utilities/GetArgParent" (dict "page" . "arg" "color") -}}
|
{{- $color := partial "utilities/GetArgParent" (dict "page" . "arg" "color") -}}
|
||||||
{{- $description := trim .Inner " \r\n" | .Page.RenderString | safeHTML -}}
|
{{- $description := trim .Inner " \r\n" | .Page.RenderString | safeHTML -}}
|
||||||
{{- $footer := partial "utilities/GetArgParent" (dict "page" . "arg" "footer-style") | partial "utilities/GetArgParent" (dict "page" . "arg" "footer") | default "none" -}}
|
{{- $footer := or (partial "utilities/GetArgParent" (dict "page" . "arg" "footer-style")) (partial "utilities/GetArgParent" (dict "page" . "arg" "footer")) -}}
|
||||||
{{- $gutter := partial "utilities/GetArgParent" (dict "page" . "arg" "gutter") | default "0" -}}
|
{{- $gutter := partial "utilities/GetArgParent" (dict "page" . "arg" "gutter") -}}
|
||||||
{{- $header := partial "utilities/GetArgParent" (dict "page" . "arg" "header-style") | partial "utilities/GetArgParent" (dict "page" . "arg" "header") | default "full" -}}
|
{{- $header := or (partial "utilities/GetArgParent" (dict "page" . "arg" "header-style")) (partial "utilities/GetArgParent" (dict "page" . "arg" "header")) -}}
|
||||||
{{- $icon := .Get "icon" -}}
|
{{- $icon := .Get "icon" -}}
|
||||||
{{- $iconRounded := partial "utilities/GetArgParent" (dict "page" . "arg" "icon-rounded") | partial "utilities/GetArgParent" (dict "page" . "arg" "iconRounded") | default false -}}
|
{{- $iconRounded := or (partial "utilities/GetArgParent" (dict "page" . "arg" "icon-rounded")) (partial "utilities/GetArgParent" (dict "page" . "arg" "iconRounded")) -}}
|
||||||
{{- $align := partial "utilities/GetArgParent" (dict "page" . "arg" "align") | default "start" -}}
|
{{- $align := partial "utilities/GetArgParent" (dict "page" . "arg" "align") -}}
|
||||||
{{- $style := partial "utilities/GetArgParent" (dict "page" . "arg" "icon-style") | partial "utilities/GetArgParent" (dict "page" . "arg" "style") | default "" -}}
|
{{- $style := or (partial "utilities/GetArgParent" (dict "page" . "arg" "icon-style")) (partial "utilities/GetArgParent" (dict "page" . "arg" "style")) -}}
|
||||||
{{- $subtle := partial "utilities/GetArgParent" (dict "page" . "arg" "subtle") | default false -}}
|
{{- $subtle := partial "utilities/GetArgParent" (dict "page" . "arg" "subtle") -}}
|
||||||
{{- $loading := .Get "loading" -}}
|
{{- $loading := .Get "loading" -}}
|
||||||
{{- $orientation := partial "utilities/GetArgParent" (dict "page" . "arg" "orientation") | default "stacked" -}}
|
{{- $orientation := partial "utilities/GetArgParent" (dict "page" . "arg" "orientation") -}}
|
||||||
{{- $padding := partial "utilities/GetArgParent" (dict "page" . "arg" "padding") | default 3 -}}
|
{{- $padding := partial "utilities/GetArgParent" (dict "page" . "arg" "padding") -}}
|
||||||
{{- $ratio := partial "utilities/GetArgParent" (dict "page" . "arg" "ratio") | default "" -}}
|
{{- $ratio := partial "utilities/GetArgParent" (dict "page" . "arg" "ratio") -}}
|
||||||
{{- $page := .Page -}}
|
{{- $page := .Page -}}
|
||||||
{{- $path := .Get "path" -}}
|
{{- $path := .Get "path" -}}
|
||||||
{{- $thumbnail := .Get "thumbnail" -}}
|
{{- $thumbnail := .Get "thumbnail" -}}
|
||||||
{{- $anchor := .Get "anchor" -}}
|
{{- $anchor := .Get "anchor" -}}
|
||||||
{{- $title := .Get "title" -}}
|
{{- $title := .Get "title" -}}
|
||||||
{{- $button := partial "utilities/GetArgParent" (dict "page" . "arg" "button") | default false -}}
|
{{- $button := partial "utilities/GetArgParent" (dict "page" . "arg" "button") -}}
|
||||||
{{- $linkType := partial "utilities/GetArgParent" (dict "page" . "arg" "link-type") | partial "utilities/GetArgParent" (dict "page" . "arg" "buttonType") | default "" -}}
|
{{- $linkType := or (partial "utilities/GetArgParent" (dict "page" . "arg" "link-type")) (partial "utilities/GetArgParent" (dict "page" . "arg" "buttonType")) -}}
|
||||||
{{- $cols := partial "utilities/GetArgParent" (dict "page" . "arg" "cols") | default 3 -}}
|
{{- $cols := partial "utilities/GetArgParent" (dict "page" . "arg" "cols") -}}
|
||||||
{{- $scroll := partial "utilities/GetArgParent" (dict "page" . "arg" "scroll") | default false -}}
|
{{- $scroll := partial "utilities/GetArgParent" (dict "page" . "arg" "scroll") -}}
|
||||||
{{- $wrapper := "" -}}
|
{{- $wrapper := "" -}}
|
||||||
|
|
||||||
{{/* Override arguments */}}
|
{{/* Override arguments */}}
|
||||||
@@ -66,7 +66,6 @@
|
|||||||
{{ $wrapper = printf "card-block-%d p-0" $cols }}
|
{{ $wrapper = printf "card-block-%d p-0" $cols }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
{{/* Main code */}}
|
{{/* Main code */}}
|
||||||
{{ if not $error -}}
|
{{ if not $error -}}
|
||||||
{{/* Render card */}}
|
{{/* Render card */}}
|
||||||
|
@@ -50,7 +50,7 @@
|
|||||||
"breakpoint" (default "md" site.Params.navigation.size))
|
"breakpoint" (default "md" site.Params.navigation.size))
|
||||||
-}}
|
-}}
|
||||||
|
|
||||||
<div id="container" class="main-content fullscreen">
|
<div id="container" class="main">
|
||||||
{{ $blocks }}
|
{{ $blocks }}
|
||||||
{{ block "main" . }}{{ end -}}
|
{{ block "main" . }}{{ end -}}
|
||||||
</div>
|
</div>
|
||||||
|
@@ -1,3 +1,3 @@
|
|||||||
{{- partial "single/thumbnail.html" (dict "page" . "wrapper" "mb-5") -}}
|
{{- partial "page/thumbnail.html" (dict "page" . "wrapper" "mb-5") -}}
|
||||||
|
|
||||||
{{ partial "utilities/ProcessContent" (dict "page" .Page "raw" .RawContent) }}
|
{{ partial "utilities/ProcessContent" (dict "page" .Page "raw" .RawContent) }}
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
{{ define "main" -}}
|
{{ define "main" -}}
|
||||||
{{- $breakpoint := $.Scratch.Get "breakpoint" -}}
|
{{- $breakpoint := $.Scratch.Get "breakpoint" -}}
|
||||||
{{- $sidebar := partial "body/sidebar" . -}}
|
{{- $sidebar := partial "page/sidebar" . -}}
|
||||||
{{- $toc := partial "body/panel-toc" . -}}
|
{{- $toc := partial "page/panel-toc" . -}}
|
||||||
|
|
||||||
{{ with $sidebar }}
|
{{ with $sidebar }}
|
||||||
<div class="offcanvas offcanvas-start" tabindex="-1" id="offcanvass-sidebar" aria-labelledby="offcanvas-label">
|
<div class="offcanvas offcanvas-start" tabindex="-1" id="offcanvass-sidebar" aria-labelledby="offcanvas-label">
|
||||||
|
114
package-lock.json
generated
114
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "@gethinode/hinode",
|
"name": "@gethinode/hinode",
|
||||||
"version": "1.0.0-alpha9",
|
"version": "1.0.0-beta3",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@gethinode/hinode",
|
"name": "@gethinode/hinode",
|
||||||
"version": "1.0.0-alpha9",
|
"version": "1.0.0-beta3",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fullhuman/postcss-purgecss": "^7.0.2",
|
"@fullhuman/postcss-purgecss": "^7.0.2",
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
"replace-in-files-cli": "^3.0.0",
|
"replace-in-files-cli": "^3.0.0",
|
||||||
"rimraf": "^6.0.1",
|
"rimraf": "^6.0.1",
|
||||||
"shx": "^0.4.0",
|
"shx": "^0.4.0",
|
||||||
"stylelint": "^16.20.0",
|
"stylelint": "^16.21.0",
|
||||||
"stylelint-config-standard-scss": "^15.0.1"
|
"stylelint-config-standard-scss": "^15.0.1"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
@@ -225,9 +225,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@csstools/css-parser-algorithms": {
|
"node_modules/@csstools/css-parser-algorithms": {
|
||||||
"version": "3.0.4",
|
"version": "3.0.5",
|
||||||
"resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz",
|
||||||
"integrity": "sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==",
|
"integrity": "sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -244,13 +244,13 @@
|
|||||||
"node": ">=18"
|
"node": ">=18"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@csstools/css-tokenizer": "^3.0.3"
|
"@csstools/css-tokenizer": "^3.0.4"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@csstools/css-tokenizer": {
|
"node_modules/@csstools/css-tokenizer": {
|
||||||
"version": "3.0.3",
|
"version": "3.0.4",
|
||||||
"resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.3.tgz",
|
"resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz",
|
||||||
"integrity": "sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==",
|
"integrity": "sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -268,9 +268,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@csstools/media-query-list-parser": {
|
"node_modules/@csstools/media-query-list-parser": {
|
||||||
"version": "4.0.2",
|
"version": "4.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-4.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-4.0.3.tgz",
|
||||||
"integrity": "sha512-EUos465uvVvMJehckATTlNqGj4UJWkTmdWuDMjqvSUkjGpmOyFZBVwb4knxCm/k2GMTXY+c/5RkdndzFYWeX5A==",
|
"integrity": "sha512-HAYH7d3TLRHDOUQK4mZKf9k9Ph/m8Akstg66ywKR4SFAigjs3yBiUeZtFxywiTm5moZMAp/5W/ZuFnNXXYLuuQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -287,8 +287,8 @@
|
|||||||
"node": ">=18"
|
"node": ">=18"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@csstools/css-parser-algorithms": "^3.0.4",
|
"@csstools/css-parser-algorithms": "^3.0.5",
|
||||||
"@csstools/css-tokenizer": "^3.0.3"
|
"@csstools/css-tokenizer": "^3.0.4"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@dual-bundle/import-meta-resolve": {
|
"node_modules/@dual-bundle/import-meta-resolve": {
|
||||||
@@ -1672,9 +1672,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/cacheable": {
|
"node_modules/cacheable": {
|
||||||
"version": "1.9.0",
|
"version": "1.10.0",
|
||||||
"resolved": "https://registry.npmjs.org/cacheable/-/cacheable-1.9.0.tgz",
|
"resolved": "https://registry.npmjs.org/cacheable/-/cacheable-1.10.0.tgz",
|
||||||
"integrity": "sha512-8D5htMCxPDUULux9gFzv30f04Xo3wCnik0oOxKoRTPIBoqA7HtOcJ87uBhQTs3jCfZZTrUBGsYIZOgE0ZRgMAg==",
|
"integrity": "sha512-SSgQTAnhd7WlJXnGlIi4jJJOiHzgnM5wRMEPaXAU4kECTAMpBoYKoZ9i5zHmclIEZbxcu3j7yY/CF8DTmwIsHg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@@ -1708,9 +1708,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/cacheable/node_modules/keyv": {
|
"node_modules/cacheable/node_modules/keyv": {
|
||||||
"version": "5.3.3",
|
"version": "5.3.4",
|
||||||
"resolved": "https://registry.npmjs.org/keyv/-/keyv-5.3.3.tgz",
|
"resolved": "https://registry.npmjs.org/keyv/-/keyv-5.3.4.tgz",
|
||||||
"integrity": "sha512-Rwu4+nXI9fqcxiEHtbkvoes2X+QfkTRo1TMkPfwzipGsJlJO/z69vqB4FNl9xJ3xCpAcbkvmEabZfPzrwN3+gQ==",
|
"integrity": "sha512-ypEvQvInNpUe+u+w8BIcPkQvEqXquyyibWE/1NB5T2BTzIpS5cGEV1LZskDzPSTvNAaT4+5FutvzlvnkxOSKlw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@@ -4224,9 +4224,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/hookified": {
|
"node_modules/hookified": {
|
||||||
"version": "1.9.0",
|
"version": "1.9.1",
|
||||||
"resolved": "https://registry.npmjs.org/hookified/-/hookified-1.9.0.tgz",
|
"resolved": "https://registry.npmjs.org/hookified/-/hookified-1.9.1.tgz",
|
||||||
"integrity": "sha512-2yEEGqphImtKIe1NXWEhu6yD3hlFR4Mxk4Mtp3XEyScpSt4pQ4ymmXA1zzxZpj99QkFK+nN0nzjeb2+RUi/6CQ==",
|
"integrity": "sha512-u3pxtGhKjcSXnGm1CX6aXS9xew535j3lkOCegbA6jdyh0BaAjTbXI4aslKstCr6zUNtoCxFGFKwjbSHdGrMB8g==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
@@ -5937,15 +5937,16 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/nanoid": {
|
"node_modules/nanoid": {
|
||||||
"version": "3.3.8",
|
"version": "3.3.11",
|
||||||
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz",
|
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
|
||||||
"integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
|
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
"type": "github",
|
"type": "github",
|
||||||
"url": "https://github.com/sponsors/ai"
|
"url": "https://github.com/sponsors/ai"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"license": "MIT",
|
||||||
"bin": {
|
"bin": {
|
||||||
"nanoid": "bin/nanoid.cjs"
|
"nanoid": "bin/nanoid.cjs"
|
||||||
},
|
},
|
||||||
@@ -6729,9 +6730,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/postcss": {
|
"node_modules/postcss": {
|
||||||
"version": "8.5.3",
|
"version": "8.5.6",
|
||||||
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz",
|
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
|
||||||
"integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==",
|
"integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
"type": "opencollective",
|
"type": "opencollective",
|
||||||
@@ -6748,7 +6749,7 @@
|
|||||||
],
|
],
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"nanoid": "^3.3.8",
|
"nanoid": "^3.3.11",
|
||||||
"picocolors": "^1.1.1",
|
"picocolors": "^1.1.1",
|
||||||
"source-map-js": "^1.2.1"
|
"source-map-js": "^1.2.1"
|
||||||
},
|
},
|
||||||
@@ -8778,9 +8779,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/stylelint": {
|
"node_modules/stylelint": {
|
||||||
"version": "16.20.0",
|
"version": "16.21.0",
|
||||||
"resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.20.0.tgz",
|
"resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.21.0.tgz",
|
||||||
"integrity": "sha512-B5Myu9WRxrgKuLs3YyUXLP2H0mrbejwNxPmyADlACWwFsrL8Bmor/nTSh4OMae5sHjOz6gkSeccQH34gM4/nAw==",
|
"integrity": "sha512-ki3PpJGG7xhm3WtINoWGnlvqAmbqSexoRMbEMJzlwewSIOqPRKPlq452c22xAdEJISVi80r+I7KL9GPUiwFgbg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -8794,9 +8795,9 @@
|
|||||||
],
|
],
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@csstools/css-parser-algorithms": "^3.0.4",
|
"@csstools/css-parser-algorithms": "^3.0.5",
|
||||||
"@csstools/css-tokenizer": "^3.0.3",
|
"@csstools/css-tokenizer": "^3.0.4",
|
||||||
"@csstools/media-query-list-parser": "^4.0.2",
|
"@csstools/media-query-list-parser": "^4.0.3",
|
||||||
"@csstools/selector-specificity": "^5.0.0",
|
"@csstools/selector-specificity": "^5.0.0",
|
||||||
"@dual-bundle/import-meta-resolve": "^4.1.0",
|
"@dual-bundle/import-meta-resolve": "^4.1.0",
|
||||||
"balanced-match": "^2.0.0",
|
"balanced-match": "^2.0.0",
|
||||||
@@ -8807,21 +8808,21 @@
|
|||||||
"debug": "^4.4.1",
|
"debug": "^4.4.1",
|
||||||
"fast-glob": "^3.3.3",
|
"fast-glob": "^3.3.3",
|
||||||
"fastest-levenshtein": "^1.0.16",
|
"fastest-levenshtein": "^1.0.16",
|
||||||
"file-entry-cache": "^10.1.0",
|
"file-entry-cache": "^10.1.1",
|
||||||
"global-modules": "^2.0.0",
|
"global-modules": "^2.0.0",
|
||||||
"globby": "^11.1.0",
|
"globby": "^11.1.0",
|
||||||
"globjoin": "^0.1.4",
|
"globjoin": "^0.1.4",
|
||||||
"html-tags": "^3.3.1",
|
"html-tags": "^3.3.1",
|
||||||
"ignore": "^7.0.4",
|
"ignore": "^7.0.5",
|
||||||
"imurmurhash": "^0.1.4",
|
"imurmurhash": "^0.1.4",
|
||||||
"is-plain-object": "^5.0.0",
|
"is-plain-object": "^5.0.0",
|
||||||
"known-css-properties": "^0.36.0",
|
"known-css-properties": "^0.37.0",
|
||||||
"mathml-tag-names": "^2.1.3",
|
"mathml-tag-names": "^2.1.3",
|
||||||
"meow": "^13.2.0",
|
"meow": "^13.2.0",
|
||||||
"micromatch": "^4.0.8",
|
"micromatch": "^4.0.8",
|
||||||
"normalize-path": "^3.0.0",
|
"normalize-path": "^3.0.0",
|
||||||
"picocolors": "^1.1.1",
|
"picocolors": "^1.1.1",
|
||||||
"postcss": "^8.5.3",
|
"postcss": "^8.5.5",
|
||||||
"postcss-resolve-nested-selector": "^0.1.6",
|
"postcss-resolve-nested-selector": "^0.1.6",
|
||||||
"postcss-safe-parser": "^7.0.1",
|
"postcss-safe-parser": "^7.0.1",
|
||||||
"postcss-selector-parser": "^7.1.0",
|
"postcss-selector-parser": "^7.1.0",
|
||||||
@@ -9012,25 +9013,25 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/stylelint/node_modules/file-entry-cache": {
|
"node_modules/stylelint/node_modules/file-entry-cache": {
|
||||||
"version": "10.1.0",
|
"version": "10.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-10.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-10.1.1.tgz",
|
||||||
"integrity": "sha512-Et/ex6smi3wOOB+n5mek+Grf7P2AxZR5ueqRUvAAn4qkyatXi3cUC1cuQXVkX0VlzBVsN4BkWJFmY/fYiRTdww==",
|
"integrity": "sha512-zcmsHjg2B2zjuBgjdnB+9q0+cWcgWfykIcsDkWDB4GTPtl1eXUA+gTI6sO0u01AqK3cliHryTU55/b2Ow1hfZg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"flat-cache": "^6.1.9"
|
"flat-cache": "^6.1.10"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/stylelint/node_modules/flat-cache": {
|
"node_modules/stylelint/node_modules/flat-cache": {
|
||||||
"version": "6.1.9",
|
"version": "6.1.10",
|
||||||
"resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-6.1.9.tgz",
|
"resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-6.1.10.tgz",
|
||||||
"integrity": "sha512-DUqiKkTlAfhtl7g78IuwqYM+YqvT+as0mY+EVk6mfimy19U79pJCzDZQsnqk3Ou/T6hFXWLGbwbADzD/c8Tydg==",
|
"integrity": "sha512-B6/v1f0NwjxzmeOhzfXPGWpKBVA207LS7lehaVKQnFrVktcFRfkzjZZ2gwj2i1TkEUMQht7ZMJbABUT5N+V1Nw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"cacheable": "^1.9.0",
|
"cacheable": "^1.10.0",
|
||||||
"flatted": "^3.3.3",
|
"flatted": "^3.3.3",
|
||||||
"hookified": "^1.8.2"
|
"hookified": "^1.9.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/stylelint/node_modules/globby": {
|
"node_modules/stylelint/node_modules/globby": {
|
||||||
@@ -9063,15 +9064,22 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/stylelint/node_modules/ignore": {
|
"node_modules/stylelint/node_modules/ignore": {
|
||||||
"version": "7.0.4",
|
"version": "7.0.5",
|
||||||
"resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
|
||||||
"integrity": "sha512-gJzzk+PQNznz8ysRrC0aOkBNVRBDtE1n53IqyqEf3PXrYwomFs5q4pGMizBMJF+ykh03insJ27hB8gSrD2Hn8A==",
|
"integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 4"
|
"node": ">= 4"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/stylelint/node_modules/known-css-properties": {
|
||||||
|
"version": "0.37.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.37.0.tgz",
|
||||||
|
"integrity": "sha512-JCDrsP4Z1Sb9JwG0aJ8Eo2r7k4Ou5MwmThS/6lcIe1ICyb7UBJKGRIUUdqc2ASdE/42lgz6zFUnzAIhtXnBVrQ==",
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
"node_modules/stylelint/node_modules/postcss-selector-parser": {
|
"node_modules/stylelint/node_modules/postcss-selector-parser": {
|
||||||
"version": "7.1.0",
|
"version": "7.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz",
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@gethinode/hinode",
|
"name": "@gethinode/hinode",
|
||||||
"version": "1.0.0-alpha9",
|
"version": "1.0.0-beta3",
|
||||||
"description": "Hinode is a clean documentation and blog theme for Hugo, an open-source static site generator",
|
"description": "Hinode is a clean documentation and blog theme for Hugo, an open-source static site generator",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"hugo",
|
"hugo",
|
||||||
@@ -88,7 +88,7 @@
|
|||||||
"replace-in-files-cli": "^3.0.0",
|
"replace-in-files-cli": "^3.0.0",
|
||||||
"rimraf": "^6.0.1",
|
"rimraf": "^6.0.1",
|
||||||
"shx": "^0.4.0",
|
"shx": "^0.4.0",
|
||||||
"stylelint": "^16.20.0",
|
"stylelint": "^16.21.0",
|
||||||
"stylelint-config-standard-scss": "^15.0.1"
|
"stylelint-config-standard-scss": "^15.0.1"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
|
Reference in New Issue
Block a user