mirror of
https://github.com/gethinode/hinode.git
synced 2025-10-07 18:14:28 +00:00
Compare commits
59 Commits
v1.0.0-bet
...
v1.0.0
Author | SHA1 | Date | |
---|---|---|---|
![]() |
fb63e36c56 | ||
![]() |
ae1cda1f5a | ||
![]() |
4846d1b016 | ||
![]() |
01522dad71 | ||
![]() |
0bbef1dad2 | ||
![]() |
5e048d32df | ||
![]() |
d1128fa7c3 | ||
![]() |
cf9a39b51f | ||
![]() |
ae9ec71966 | ||
![]() |
f6c4bbfffb | ||
![]() |
7a655315f1 | ||
![]() |
5c27178881 | ||
![]() |
c829049842 | ||
![]() |
613da916aa | ||
![]() |
d3d75c9dc6 | ||
![]() |
2f5b49397e | ||
![]() |
632f3d861b | ||
![]() |
004063f02a | ||
![]() |
1bd498f816 | ||
![]() |
291220256a | ||
![]() |
7bcb87a73e | ||
![]() |
55cebc752e | ||
![]() |
14bf59a551 | ||
![]() |
bce0fedd15 | ||
![]() |
694e7fc7b1 | ||
![]() |
93749cb368 | ||
![]() |
cf01e22a4d | ||
![]() |
f416f6bb7e | ||
![]() |
a7b776c0dc | ||
![]() |
e70f3acb57 | ||
![]() |
6e7b40ad0f | ||
![]() |
7446b2958e | ||
![]() |
6c18ada352 | ||
![]() |
323b42996b | ||
![]() |
ab8074b293 | ||
![]() |
9419e18ba9 | ||
![]() |
0f007ba5c2 | ||
![]() |
7d0943fb0c | ||
![]() |
3d2cfdaf0a | ||
![]() |
281c16b561 | ||
![]() |
fe68bd6be3 | ||
![]() |
3bf0c241a3 | ||
![]() |
a6a670cd2b | ||
![]() |
a44b5449f8 | ||
![]() |
461f53c67e | ||
![]() |
9a5059d8bd | ||
![]() |
c1586ee00e | ||
![]() |
88d2a50954 | ||
![]() |
77aa394c8e | ||
![]() |
5d4147fea9 | ||
![]() |
9c1d84487d | ||
![]() |
944a9705d7 | ||
![]() |
5e274d952a | ||
![]() |
a7f2d6d003 | ||
![]() |
057ae25f7b | ||
![]() |
a6454e3b4e | ||
![]() |
4b8f59782a | ||
![]() |
777c4f671f | ||
![]() |
990a016434 |
@@ -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);
|
||||||
|
}
|
||||||
|
@@ -1,14 +1,8 @@
|
|||||||
.nav-tabs .nav-tabs {
|
.nav-tabs {
|
||||||
border: none;
|
border: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-tabs .nav-link.active {
|
.nav-callout, .tab-content {
|
||||||
border-bottom-color: var(--bs-body-bg) !important;
|
|
||||||
border-bottom-style: solid !important;
|
|
||||||
z-index: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-callout {
|
|
||||||
--#{$prefix}nav-callout-bg: var(--#{$prefix}light);
|
--#{$prefix}nav-callout-bg: var(--#{$prefix}light);
|
||||||
--#{$prefix}nav-callout-active-bg: var(--bs-primary-bg-subtle);
|
--#{$prefix}nav-callout-active-bg: var(--bs-primary-bg-subtle);
|
||||||
--#{$prefix}nav-callout-gap: #{$nav-underline-gap};
|
--#{$prefix}nav-callout-gap: #{$nav-underline-gap};
|
||||||
@@ -92,7 +86,7 @@
|
|||||||
|
|
||||||
@if $enable-dark-mode {
|
@if $enable-dark-mode {
|
||||||
@include color-mode(dark) {
|
@include color-mode(dark) {
|
||||||
.nav-callout {
|
.nav-callout, .tab-content {
|
||||||
--#{$prefix}nav-callout-bg: var(--#{$prefix}tertiary-bg);
|
--#{$prefix}nav-callout-bg: var(--#{$prefix}tertiary-bg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
{{ partial "assets/hero.html" (dict
|
{{ partial "assets/hero.html" (dict
|
||||||
"heading" $args.heading
|
"heading" $args.heading
|
||||||
"background" $args.background
|
"background" $args.background
|
||||||
"illustration" (merge (dict "ratio" "1x1") $args.illustration)
|
"illustration" (merge (dict "ratio" "auto") $args.illustration)
|
||||||
"order" $args.order
|
"order" $args.order
|
||||||
"link-type" $args.linkType
|
"link-type" $args.linkType
|
||||||
"links" $args.links
|
"links" $args.links
|
||||||
|
@@ -29,7 +29,7 @@ blueprint:
|
|||||||
link:
|
link:
|
||||||
cols:
|
cols:
|
||||||
padding:
|
padding:
|
||||||
max:
|
limit:
|
||||||
pagination:
|
pagination:
|
||||||
paginate:
|
paginate:
|
||||||
background:
|
background:
|
||||||
|
@@ -62,14 +62,14 @@
|
|||||||
|
|
||||||
<!-- Main code -->
|
<!-- Main code -->
|
||||||
{{ if not $error }}
|
{{ if not $error }}
|
||||||
{{- partial "assets/section-title.html" (dict "heading" $args.heading) -}}
|
{{- partial "assets/section-title.html" (dict "heading" $args.heading "justify" $args.justify) -}}
|
||||||
|
|
||||||
{{ $partial := "assets/card-group.html" }}
|
{{ $partial := "assets/card-group.html" }}
|
||||||
{{ $params := dict }}
|
{{ $params := dict }}
|
||||||
{{- $params = merge $params (dict
|
{{- $params = merge $params (dict
|
||||||
"page" page
|
"page" page
|
||||||
"list" $pages
|
"list" $pages
|
||||||
"max" $args.max
|
"limit" $args.limit
|
||||||
"cols" $args.cols
|
"cols" $args.cols
|
||||||
"icon-rounded" $args.iconRounded
|
"icon-rounded" $args.iconRounded
|
||||||
"href" (cond $moreButton $moreLink "")
|
"href" (cond $moreButton $moreLink "")
|
||||||
|
@@ -35,7 +35,7 @@
|
|||||||
{{ end}}
|
{{ end}}
|
||||||
|
|
||||||
{{ if not $error }}
|
{{ if not $error }}
|
||||||
{{- partial "assets/section-title.html" (dict "heading" $args.heading) -}}
|
{{- partial "assets/section-title.html" (dict "heading" $args.heading "justify" $args.justify) -}}
|
||||||
|
|
||||||
{{- partial "assets/card-group.html" (dict
|
{{- partial "assets/card-group.html" (dict
|
||||||
"page" page
|
"page" page
|
||||||
|
@@ -19,7 +19,7 @@
|
|||||||
{{ if not $args.err }}
|
{{ if not $args.err }}
|
||||||
{{ $color := "" }}
|
{{ $color := "" }}
|
||||||
{{ if $args.contrast }}{{ $color = "white" }}{{ end }}
|
{{ if $args.contrast }}{{ $color = "white" }}{{ end }}
|
||||||
{{- partial "assets/section-title.html" (dict "heading" $args.heading "color" $color) -}}
|
{{- partial "assets/section-title.html" (dict "heading" $args.heading "color" $color "justify" $args.justify) -}}
|
||||||
|
|
||||||
{{ $class := "" }}
|
{{ $class := "" }}
|
||||||
{{ $id := printf "faq-%s" (md5 (delimit (slice . now) "-")) }}
|
{{ $id := printf "faq-%s" (md5 (delimit (slice . now) "-")) }}
|
||||||
|
@@ -96,7 +96,7 @@
|
|||||||
) }}
|
) }}
|
||||||
{{ end}}
|
{{ end}}
|
||||||
|
|
||||||
{{- partial "assets/section-title.html" (dict "heading" $args.heading) -}}
|
{{- partial "assets/section-title.html" (dict "heading" $args.heading "justify" $args.justify) -}}
|
||||||
|
|
||||||
{{ if eq $args.orientation "stacked" }}
|
{{ if eq $args.orientation "stacked" }}
|
||||||
<div class="col-{{ $breakpoint.current }}-{{ $args.width }} mx-auto pb-{{ $padding.y }}">
|
<div class="col-{{ $breakpoint.current }}-{{ $args.width }} mx-auto pb-{{ $padding.y }}">
|
||||||
|
@@ -10,10 +10,10 @@
|
|||||||
footerBelowFold = false
|
footerBelowFold = false
|
||||||
loading = "lazy"
|
loading = "lazy"
|
||||||
breakpoint = "md"
|
breakpoint = "md"
|
||||||
|
titleCase = false
|
||||||
[main.padding]
|
[main.padding]
|
||||||
x = 4
|
x = 4
|
||||||
y = 4
|
y = 4
|
||||||
titleCase = false
|
|
||||||
[main.internalLinks]
|
[main.internalLinks]
|
||||||
validate = true
|
validate = true
|
||||||
pretty = false
|
pretty = false
|
||||||
|
@@ -7,18 +7,18 @@ content_blocks:
|
|||||||
title: Welcome to Hinode!
|
title: Welcome to Hinode!
|
||||||
content: |-
|
content: |-
|
||||||
A clean documentation and blog theme for your Hugo site based on Bootstrap 5.
|
A clean documentation and blog theme for your Hugo site based on Bootstrap 5.
|
||||||
align: start
|
width: 6
|
||||||
background:
|
background:
|
||||||
color: primary
|
color: primary
|
||||||
subtle: true
|
subtle: true
|
||||||
illustration:
|
illustration:
|
||||||
image: /img/sunrise.jpg
|
image: /img/sunrise.jpg
|
||||||
ratio: 16x9
|
ratio: 16x9
|
||||||
width: 8
|
width: 8
|
||||||
width: 6
|
|
||||||
links:
|
links:
|
||||||
- title: Get started
|
- title: About
|
||||||
url: https://gethinode.com/docs
|
url: about
|
||||||
icon: fas book-open
|
icon: fas chevron-right
|
||||||
orientation: horizontal
|
orientation: horizontal
|
||||||
|
justify: center
|
||||||
---
|
---
|
||||||
|
@@ -22,7 +22,8 @@ arguments:
|
|||||||
release: 1.0.0
|
release: 1.0.0
|
||||||
list:
|
list:
|
||||||
cards:
|
cards:
|
||||||
max:
|
limit:
|
||||||
|
release: v1.0.0
|
||||||
cols:
|
cols:
|
||||||
release: v0.19.0
|
release: v0.19.0
|
||||||
paginate:
|
paginate:
|
||||||
@@ -158,3 +159,12 @@ arguments:
|
|||||||
group: partial
|
group: partial
|
||||||
deprecated: v1.0.0
|
deprecated: v1.0.0
|
||||||
alternative: href-title
|
alternative: href-title
|
||||||
|
max:
|
||||||
|
type: int
|
||||||
|
optional: true
|
||||||
|
comment: Maximum number of elements to display.
|
||||||
|
group: partial
|
||||||
|
options:
|
||||||
|
min: 1
|
||||||
|
deprecated: v1.0.0
|
||||||
|
alternative: limit
|
||||||
|
@@ -11,8 +11,8 @@ arguments:
|
|||||||
full:
|
full:
|
||||||
id:
|
id:
|
||||||
class:
|
class:
|
||||||
options:
|
highlight-options:
|
||||||
release: v0.27.6
|
release: v1.0.0
|
||||||
# deprecated arguments
|
# deprecated arguments
|
||||||
path:
|
path:
|
||||||
type: string
|
type: string
|
||||||
@@ -22,3 +22,11 @@ arguments:
|
|||||||
the path of the repository is used as base path instead.
|
the path of the repository is used as base path instead.
|
||||||
deprecated: v1.0.0
|
deprecated: v1.0.0
|
||||||
alternative: file
|
alternative: file
|
||||||
|
options:
|
||||||
|
type: string
|
||||||
|
optional: true
|
||||||
|
comment: >-
|
||||||
|
Hugo highlighting options, see https://gohugo.io/shortcodes/highlight/#options-1.
|
||||||
|
release: v0.27.6
|
||||||
|
deprecated: v1.0.0
|
||||||
|
alternative: highlight-options
|
||||||
|
@@ -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
|
||||||
|
@@ -7,8 +7,12 @@ arguments:
|
|||||||
group: partial
|
group: partial
|
||||||
list:
|
list:
|
||||||
group: partial
|
group: partial
|
||||||
|
nav-disabled:
|
||||||
|
release: v1.0.0
|
||||||
nav-items:
|
nav-items:
|
||||||
release: v1.0.0
|
release: v1.0.0
|
||||||
|
nav-show:
|
||||||
|
release: v1.0.0
|
||||||
nav-titles:
|
nav-titles:
|
||||||
release: v1.0.0
|
release: v1.0.0
|
||||||
tab-type:
|
tab-type:
|
||||||
|
@@ -9,3 +9,4 @@ arguments:
|
|||||||
optional: false
|
optional: false
|
||||||
background:
|
background:
|
||||||
class:
|
class:
|
||||||
|
justify:
|
@@ -31,6 +31,11 @@ arguments:
|
|||||||
deprecated: v1.0.0
|
deprecated: v1.0.0
|
||||||
alternative: media-id
|
alternative: media-id
|
||||||
options:
|
options:
|
||||||
|
type: string
|
||||||
|
optional: true
|
||||||
|
comment: >-
|
||||||
|
Optional query parameters to append to video asset's url. The query string
|
||||||
|
is prepended with a `?` symbol. Only applicable to Cloudinary.
|
||||||
release: v0.28.2
|
release: v0.28.2
|
||||||
deprecated: v1.0.0
|
deprecated: v1.0.0
|
||||||
alternative: query-args
|
alternative: query-args
|
||||||
|
@@ -8,10 +8,10 @@
|
|||||||
footerBelowFold = false
|
footerBelowFold = false
|
||||||
loading = "lazy"
|
loading = "lazy"
|
||||||
breakpoint = "md"
|
breakpoint = "md"
|
||||||
|
titleCase = true
|
||||||
[main.padding]
|
[main.padding]
|
||||||
x = 4
|
x = 4
|
||||||
y = 4
|
y = 4
|
||||||
titleCase = true
|
|
||||||
[main.internalLinks]
|
[main.internalLinks]
|
||||||
validate = true
|
validate = true
|
||||||
pretty = true
|
pretty = true
|
||||||
|
@@ -37,7 +37,7 @@ content_blocks:
|
|||||||
more:
|
more:
|
||||||
title: More Posts
|
title: More Posts
|
||||||
padding: 0
|
padding: 0
|
||||||
max: 3
|
limit: 3
|
||||||
class: border-0 card-zoom card-body-margin
|
class: border-0 card-zoom card-body-margin
|
||||||
|
|
||||||
- _bookshop_name: articles
|
- _bookshop_name: articles
|
||||||
@@ -55,7 +55,7 @@ content_blocks:
|
|||||||
title: More articles
|
title: More articles
|
||||||
cols: 1
|
cols: 1
|
||||||
padding: 4
|
padding: 4
|
||||||
max: 2
|
limit: 2
|
||||||
header-style: none
|
header-style: none
|
||||||
footer-style: tags
|
footer-style: tags
|
||||||
orientation: horizontal-sm
|
orientation: horizontal-sm
|
||||||
|
@@ -6,18 +6,17 @@ content_blocks:
|
|||||||
- _bookshop_name: hero
|
- _bookshop_name: hero
|
||||||
heading:
|
heading:
|
||||||
title: Content blocks
|
title: Content blocks
|
||||||
align: start
|
|
||||||
breadcrumb: true
|
|
||||||
|
|
||||||
- _bookshop_name: articles
|
|
||||||
heading:
|
|
||||||
content: >-
|
content: >-
|
||||||
Hinode uses [Bookshop](https://github.com/CloudCannon/bookshop) to
|
Hinode uses [Bookshop](https://github.com/CloudCannon/bookshop) to
|
||||||
support so-called content blocks. Content blocks are reusable page
|
support so-called content blocks. Content blocks are reusable page
|
||||||
elements, such as a hero, about panel, or an FAQ. Hinode includes
|
elements, such as a hero, about panel, or an FAQ. Hinode includes
|
||||||
several ready-to-use blocks. Click on a card for more details about
|
several ready-to-use blocks. Click on a card for more details about
|
||||||
a content block, including its frontmatter configuration.
|
a content block, including its frontmatter configuration.
|
||||||
|
align: start
|
||||||
width: 8
|
width: 8
|
||||||
|
breadcrumb: true
|
||||||
|
|
||||||
|
- _bookshop_name: articles
|
||||||
hide-empty: false
|
hide-empty: false
|
||||||
input:
|
input:
|
||||||
section: blocks
|
section: blocks
|
||||||
@@ -27,7 +26,7 @@ content_blocks:
|
|||||||
title: More Posts
|
title: More Posts
|
||||||
cols: 3
|
cols: 3
|
||||||
padding: 0
|
padding: 0
|
||||||
max: 9
|
limit: 9
|
||||||
paginate: true
|
paginate: true
|
||||||
cover: false
|
cover: false
|
||||||
header-style: none
|
header-style: none
|
||||||
|
@@ -25,6 +25,7 @@ The `about` content block renders a short message next to an illustration. You c
|
|||||||
subtle: true
|
subtle: true
|
||||||
illustration:
|
illustration:
|
||||||
image: /assets/img/nat-9l98kFByiao-unsplash.jpg
|
image: /assets/img/nat-9l98kFByiao-unsplash.jpg
|
||||||
|
ratio: 1x1
|
||||||
link-type: link
|
link-type: link
|
||||||
links:
|
links:
|
||||||
- title: First link
|
- title: First link
|
||||||
|
@@ -26,12 +26,12 @@ The `articles` content block renders a group of article cards.
|
|||||||
more:
|
more:
|
||||||
title: More Blogs
|
title: More Blogs
|
||||||
padding: 0
|
padding: 0
|
||||||
max: 3
|
limit: 3
|
||||||
background:
|
background:
|
||||||
color: primary
|
color: primary
|
||||||
subtle: true
|
subtle: true
|
||||||
class: border-0 card-zoom card-body-margin
|
class: border-0 card-zoom card-body-margin
|
||||||
justify: center
|
justify: start
|
||||||
```
|
```
|
||||||
|
|
||||||
{{< /example-bookshop >}}
|
{{< /example-bookshop >}}
|
||||||
|
@@ -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,7 +248,7 @@ 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 -->
|
||||||
|
|
||||||
@@ -352,14 +362,14 @@ As an example, the following shortcode displays a tab group with vertically alig
|
|||||||
<!-- markdownlint-disable MD037 -->
|
<!-- markdownlint-disable MD037 -->
|
||||||
{{< example lang="hugo" >}}
|
{{< example lang="hugo" >}}
|
||||||
{{</* nav tab-type="pills" vertical="true" */>}}
|
{{</* nav tab-type="pills" vertical="true" */>}}
|
||||||
{{</* nav-item title="Nav Item #1" show="true" */>}}
|
{{</* nav-item title="Nav Item #1" */>}}
|
||||||
This is the first item's nav body. It supports Markdown content.
|
This is the first item's nav body. It supports Markdown content.
|
||||||
The item is shown by adding the value `show` to the `class` argument.
|
The item is shown by adding the value `show` to the `class` argument.
|
||||||
{{</* /nav-item */>}}
|
{{</* /nav-item */>}}
|
||||||
{{</* nav-item title="Nav Item #2" */>}}
|
{{</* nav-item title="Nav Item #2" show="true" */>}}
|
||||||
This is the second item's nav body.
|
This is the second item's nav body.
|
||||||
{{</* /nav-item */>}}
|
{{</* /nav-item */>}}
|
||||||
{{</* nav-item title="Nav Item #3" */>}}
|
{{</* nav-item title="Nav Item #3" disabled="true" */>}}
|
||||||
This is the third item's nav body.
|
This is the third item's nav body.
|
||||||
{{</* /nav-item */>}}
|
{{</* /nav-item */>}}
|
||||||
{{</* /nav */>}}
|
{{</* /nav */>}}
|
||||||
|
@@ -122,18 +122,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",
|
||||||
@@ -205,6 +207,7 @@
|
|||||||
"d-sm-block",
|
"d-sm-block",
|
||||||
"d-sm-none",
|
"d-sm-none",
|
||||||
"data-table",
|
"data-table",
|
||||||
|
"disabled",
|
||||||
"display-1",
|
"display-1",
|
||||||
"display-4",
|
"display-4",
|
||||||
"dropdown",
|
"dropdown",
|
||||||
@@ -228,23 +231,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 +256,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",
|
||||||
@@ -331,7 +327,6 @@
|
|||||||
"justify-content-between",
|
"justify-content-between",
|
||||||
"justify-content-center",
|
"justify-content-center",
|
||||||
"justify-content-end",
|
"justify-content-end",
|
||||||
"justify-content-md-end",
|
|
||||||
"justify-content-md-start",
|
"justify-content-md-start",
|
||||||
"justify-content-start",
|
"justify-content-start",
|
||||||
"katex",
|
"katex",
|
||||||
@@ -372,6 +367,7 @@
|
|||||||
"mt-auto",
|
"mt-auto",
|
||||||
"mt-md-0",
|
"mt-md-0",
|
||||||
"multi-docs-collapse-15",
|
"multi-docs-collapse-15",
|
||||||
|
"multi-docs-collapse-16",
|
||||||
"multi-file-collapse-1",
|
"multi-file-collapse-1",
|
||||||
"mx-auto",
|
"mx-auto",
|
||||||
"mx-md-0",
|
"mx-md-0",
|
||||||
@@ -499,7 +495,6 @@
|
|||||||
"text-decoration-none",
|
"text-decoration-none",
|
||||||
"text-end",
|
"text-end",
|
||||||
"text-info",
|
"text-info",
|
||||||
"text-md-end",
|
|
||||||
"text-muted",
|
"text-muted",
|
||||||
"text-nowrap",
|
"text-nowrap",
|
||||||
"text-primary",
|
"text-primary",
|
||||||
@@ -569,6 +564,7 @@
|
|||||||
"alerte",
|
"alerte",
|
||||||
"animatie",
|
"animatie",
|
||||||
"animation",
|
"animation",
|
||||||
|
"args",
|
||||||
"arguments",
|
"arguments",
|
||||||
"background-type",
|
"background-type",
|
||||||
"badge",
|
"badge",
|
||||||
@@ -576,10 +572,10 @@
|
|||||||
"block-diagram",
|
"block-diagram",
|
||||||
"blog",
|
"blog",
|
||||||
"body-docs-collapse-15",
|
"body-docs-collapse-15",
|
||||||
|
"body-docs-collapse-16",
|
||||||
"body-file-collapse-1",
|
"body-file-collapse-1",
|
||||||
"bouton",
|
"bouton",
|
||||||
"breadcrumb",
|
"breadcrumb",
|
||||||
"build-a-static-website-fast-and-flexible",
|
|
||||||
"button",
|
"button",
|
||||||
"button-group",
|
"button-group",
|
||||||
"c4-diagram",
|
"c4-diagram",
|
||||||
@@ -602,7 +598,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",
|
||||||
@@ -611,37 +606,47 @@
|
|||||||
"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-664efd96843c20a5a8800d1318cb7744",
|
"faq-50c692e264c634586e8c4ecaa233a9fe",
|
||||||
"faq-664efd96843c20a5a8800d1318cb7744-heading-faq-664efd96843c20a5a8800d1318cb7744",
|
"faq-50c692e264c634586e8c4ecaa233a9fe-heading-faq-50c692e264c634586e8c4ecaa233a9fe",
|
||||||
"faq-664efd96843c20a5a8800d1318cb7744-item-0",
|
"faq-50c692e264c634586e8c4ecaa233a9fe-item-0",
|
||||||
"faq-664efd96843c20a5a8800d1318cb7744-item-1",
|
"faq-50c692e264c634586e8c4ecaa233a9fe-item-1",
|
||||||
"faq-664efd96843c20a5a8800d1318cb7744-item-2",
|
"faq-50c692e264c634586e8c4ecaa233a9fe-item-2",
|
||||||
|
"faq-6970cc0aa1c2d2d4c1359a93d3193646",
|
||||||
|
"faq-6970cc0aa1c2d2d4c1359a93d3193646-heading-faq-6970cc0aa1c2d2d4c1359a93d3193646",
|
||||||
|
"faq-6970cc0aa1c2d2d4c1359a93d3193646-item-0",
|
||||||
|
"faq-6970cc0aa1c2d2d4c1359a93d3193646-item-1",
|
||||||
|
"faq-6970cc0aa1c2d2d4c1359a93d3193646-item-2",
|
||||||
|
"faq-85f9e7e957de15130b6401c39140dad6",
|
||||||
|
"faq-85f9e7e957de15130b6401c39140dad6-heading-faq-85f9e7e957de15130b6401c39140dad6",
|
||||||
|
"faq-85f9e7e957de15130b6401c39140dad6-item-0",
|
||||||
|
"faq-85f9e7e957de15130b6401c39140dad6-item-1",
|
||||||
|
"faq-85f9e7e957de15130b6401c39140dad6-item-2",
|
||||||
|
"faq-d5c6be23853321daeaf421994a4c5937",
|
||||||
|
"faq-d5c6be23853321daeaf421994a4c5937-heading-faq-d5c6be23853321daeaf421994a4c5937",
|
||||||
|
"faq-d5c6be23853321daeaf421994a4c5937-item-0",
|
||||||
|
"faq-d5c6be23853321daeaf421994a4c5937-item-1",
|
||||||
|
"faq-d5c6be23853321daeaf421994a4c5937-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",
|
||||||
@@ -653,10 +658,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",
|
||||||
@@ -664,9 +667,9 @@
|
|||||||
"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-16",
|
||||||
"footer-file-collapse-1",
|
"footer-file-collapse-1",
|
||||||
"formula-katex",
|
"formula-katex",
|
||||||
"formule-katex",
|
"formule-katex",
|
||||||
@@ -711,23 +714,20 @@
|
|||||||
"nav-0-0",
|
"nav-0-0",
|
||||||
"nav-0-1",
|
"nav-0-1",
|
||||||
"nav-0-2",
|
"nav-0-2",
|
||||||
|
"nav-0-btn-0",
|
||||||
|
"nav-0-btn-1",
|
||||||
|
"nav-0-btn-2",
|
||||||
"nav-nav-0",
|
"nav-nav-0",
|
||||||
"nav-nav-0-btn-0",
|
|
||||||
"nav-nav-0-btn-1",
|
|
||||||
"nav-nav-0-btn-2",
|
|
||||||
"navbar",
|
"navbar",
|
||||||
"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",
|
||||||
|
2
go.mod
2
go.mod
@@ -18,7 +18,7 @@ require (
|
|||||||
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-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.5.1 // indirect
|
github.com/gethinode/mod-utils/v4 v4.8.4 // 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.7+incompatible // indirect
|
github.com/twbs/bootstrap v5.3.7+incompatible // indirect
|
||||||
)
|
)
|
||||||
|
14
go.sum
14
go.sum
@@ -438,6 +438,20 @@ github.com/gethinode/mod-utils/v4 v4.5.0 h1:p6sDsMNA/KE2IK3SPdWjFX3cPAwPP5gDxzJu
|
|||||||
github.com/gethinode/mod-utils/v4 v4.5.0/go.mod h1:bYmvRdAo4ICy5MpSGafDvO4p5bTDpsDKFCPL3bH0mN4=
|
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 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.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/gethinode/mod-utils/v4 v4.7.0 h1:JaL/+APOwdEzAi6y174ZdwoguCdALyGiGX8qBVXXBdU=
|
||||||
|
github.com/gethinode/mod-utils/v4 v4.7.0/go.mod h1:bYmvRdAo4ICy5MpSGafDvO4p5bTDpsDKFCPL3bH0mN4=
|
||||||
|
github.com/gethinode/mod-utils/v4 v4.8.0 h1:/+M3EHqA8IzgBWXX1GLmT/xKbk2FVhUwmUfMnk/goF4=
|
||||||
|
github.com/gethinode/mod-utils/v4 v4.8.0/go.mod h1:bYmvRdAo4ICy5MpSGafDvO4p5bTDpsDKFCPL3bH0mN4=
|
||||||
|
github.com/gethinode/mod-utils/v4 v4.8.1 h1:XJULrx5VWO4wR69EsvfPp9bQoRvx8Y7GwnknpDbrDpg=
|
||||||
|
github.com/gethinode/mod-utils/v4 v4.8.1/go.mod h1:bYmvRdAo4ICy5MpSGafDvO4p5bTDpsDKFCPL3bH0mN4=
|
||||||
|
github.com/gethinode/mod-utils/v4 v4.8.2 h1:mhPmqdeCar2sOdVwKIyJl5la0RVBPtw4d29ncRKN3ek=
|
||||||
|
github.com/gethinode/mod-utils/v4 v4.8.2/go.mod h1:bYmvRdAo4ICy5MpSGafDvO4p5bTDpsDKFCPL3bH0mN4=
|
||||||
|
github.com/gethinode/mod-utils/v4 v4.8.3 h1:CSaFR/c1cGrSPpH5ZfrNOoMhAbNb8sw0SCRh9ZxCJTU=
|
||||||
|
github.com/gethinode/mod-utils/v4 v4.8.3/go.mod h1:bYmvRdAo4ICy5MpSGafDvO4p5bTDpsDKFCPL3bH0mN4=
|
||||||
|
github.com/gethinode/mod-utils/v4 v4.8.4 h1:ExD2zZCGonAmbIxC9wBU2dp+V4ZfvG46NWaz+LaV3iQ=
|
||||||
|
github.com/gethinode/mod-utils/v4 v4.8.4/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=
|
||||||
|
@@ -33,7 +33,6 @@
|
|||||||
"classes": [
|
"classes": [
|
||||||
"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",
|
||||||
@@ -53,8 +52,6 @@
|
|||||||
"col-12",
|
"col-12",
|
||||||
"col-6",
|
"col-6",
|
||||||
"col-8",
|
"col-8",
|
||||||
"col-md-1",
|
|
||||||
"col-md-11",
|
|
||||||
"col-md-2",
|
"col-md-2",
|
||||||
"col-md-6",
|
"col-md-6",
|
||||||
"col-md-8",
|
"col-md-8",
|
||||||
@@ -78,7 +75,7 @@
|
|||||||
"fa-10x",
|
"fa-10x",
|
||||||
"fa-2x",
|
"fa-2x",
|
||||||
"fa-angle-left",
|
"fa-angle-left",
|
||||||
"fa-book-open",
|
"fa-chevron-right",
|
||||||
"fa-ellipsis",
|
"fa-ellipsis",
|
||||||
"fa-face-frown",
|
"fa-face-frown",
|
||||||
"fa-fw",
|
"fa-fw",
|
||||||
@@ -174,10 +171,10 @@
|
|||||||
"section-cover",
|
"section-cover",
|
||||||
"shadow",
|
"shadow",
|
||||||
"svg-inline--fa",
|
"svg-inline--fa",
|
||||||
|
"text-",
|
||||||
"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",
|
||||||
@@ -196,7 +193,7 @@
|
|||||||
"fab-linkedin",
|
"fab-linkedin",
|
||||||
"fab-medium",
|
"fab-medium",
|
||||||
"fas-angle-left",
|
"fas-angle-left",
|
||||||
"fas-book-open",
|
"fas-chevron-right",
|
||||||
"fas-ellipsis",
|
"fas-ellipsis",
|
||||||
"fas-moon",
|
"fas-moon",
|
||||||
"fas-sun",
|
"fas-sun",
|
||||||
|
@@ -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 := "" }}
|
||||||
@@ -125,7 +125,9 @@
|
|||||||
{{ if in (slice "types" "both") $args.renderType }}
|
{{ if in (slice "types" "both") $args.renderType }}
|
||||||
{{ $prefix := strings.Repeat $args.headerLevel "#" }}
|
{{ $prefix := strings.Repeat $args.headerLevel "#" }}
|
||||||
{{ range $k, $v := $types.udt }}
|
{{ range $k, $v := $types.udt }}
|
||||||
{{ printf "%s %s %s" $prefix $k (T "type") | $args.page.RenderString }}
|
{{ $title := $k }}
|
||||||
|
{{ if site.Params.main.titleCase }}{{ $title = title $title }}{{ end }}
|
||||||
|
{{ printf "%s %s %s" $prefix $title (T "type") | $args.page.RenderString }}
|
||||||
{{ partial "inline/args-table.html" (merge $params (dict "args" $v)) }}
|
{{ partial "inline/args-table.html" (merge $params (dict "args" $v)) }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
@@ -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 -}}
|
||||||
|
@@ -113,7 +113,7 @@
|
|||||||
{{/* Limit list to max elements */}}
|
{{/* Limit list to max elements */}}
|
||||||
{{- $count := len $elements -}}
|
{{- $count := len $elements -}}
|
||||||
{{- $max := $count -}}
|
{{- $max := $count -}}
|
||||||
{{- $max = math.Min ($args.max | default $count) $count -}}
|
{{- $max = math.Min ((or $args.limit $args.max) | default $count) $count -}}
|
||||||
{{- if not $args.paginate -}}
|
{{- if not $args.paginate -}}
|
||||||
{{- $elements = first $max $elements -}}
|
{{- $elements = first $max $elements -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
@@ -179,7 +179,7 @@
|
|||||||
{{ if eq (lower (path.Ext $thumbnail)) ".svg" }}{{ $fullHeight = "" }}{{ $rounding = "" }}{{ end }}
|
{{ if eq (lower (path.Ext $thumbnail)) ".svg" }}{{ $fullHeight = "" }}{{ $rounding = "" }}{{ end }}
|
||||||
{{- partial $args.hook (dict
|
{{- partial $args.hook (dict
|
||||||
"src" $thumbnail
|
"src" $thumbnail
|
||||||
"ratio" (or $ratio "1x1")
|
"ratio" (or $ratio "auto")
|
||||||
"portrait" $args.portrait
|
"portrait" $args.portrait
|
||||||
"sizes" $args.sizes
|
"sizes" $args.sizes
|
||||||
"anchor" $anchor
|
"anchor" $anchor
|
||||||
@@ -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 }}
|
||||||
|
@@ -83,7 +83,7 @@
|
|||||||
{{ else }}
|
{{ else }}
|
||||||
{{ warnf "Unsupported media type '%s': %q" (string $res.MediaType) $src -}}
|
{{ warnf "Unsupported media type '%s': %q" (string $res.MediaType) $src -}}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ else if $args.ratio }}
|
{{ else if and $args.ratio (ne $args.ratio "auto") }}
|
||||||
{{ $transform = "fill" }}
|
{{ $transform = "fill" }}
|
||||||
{{ $dims = partial "assets/helpers/GetDimension.html" (dict "ratio" $args.ratio) }}
|
{{ $dims = partial "assets/helpers/GetDimension.html" (dict "ratio" $args.ratio) }}
|
||||||
{{ if not $dims }}{{ errorf "partial [assets/image.html] - Cannot find dimension data: %s" $args.ratio }}{{ end }}
|
{{ if not $dims }}{{ errorf "partial [assets/image.html] - Cannot find dimension data: %s" $args.ratio }}{{ end }}
|
||||||
@@ -148,12 +148,13 @@
|
|||||||
)}}
|
)}}
|
||||||
{{ if $args.imageset }}
|
{{ if $args.imageset }}
|
||||||
{{- $set = partial "assets/helpers/image-set.html" (dict
|
{{- $set = partial "assets/helpers/image-set.html" (dict
|
||||||
"src" $src
|
"src" $src
|
||||||
"img" $img
|
"img" $img
|
||||||
"dims" $dims
|
"dims" $dims
|
||||||
"anchor" $args.anchor
|
"anchor" $args.anchor
|
||||||
"transform" $transform
|
"transform" $transform
|
||||||
"hook" $hook
|
"hook" $hook
|
||||||
|
"include-width" true
|
||||||
) -}}
|
) -}}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
@@ -101,6 +101,7 @@
|
|||||||
"link-type" (or $args.linkType $args.type)
|
"link-type" (or $args.linkType $args.type)
|
||||||
"class" "hero-title"
|
"class" "hero-title"
|
||||||
"arrangement" $arrangement
|
"arrangement" $arrangement
|
||||||
|
"justify" $args.justify
|
||||||
) }}
|
) }}
|
||||||
|
|
||||||
{{ if eq $args.orientation "stacked" }}
|
{{ if eq $args.orientation "stacked" }}
|
||||||
|
@@ -6,16 +6,16 @@
|
|||||||
*/}}
|
*/}}
|
||||||
|
|
||||||
{{/* Initialize arguments */}}
|
{{/* Initialize arguments */}}
|
||||||
{{ $args := partial "utilities/InitArgs.html" (dict "structure" "nav-item" "args" . "group" "partial") }}
|
{{- $args := partial "utilities/InitArgs.html" (dict "structure" "nav-item" "args" . "group" "partial") -}}
|
||||||
{{ if or $args.err $args.warnmsg }}
|
{{- if or $args.err $args.warnmsg -}}
|
||||||
{{ partial (cond $args.err "utilities/LogErr.html" "utilities/LogWarn.html") (dict
|
{{- partial (cond $args.err "utilities/LogErr.html" "utilities/LogWarn.html") (dict
|
||||||
"partial" "assets/nav-item.html"
|
"partial" "assets/nav-item.html"
|
||||||
"warnid" "warn-invalid-arguments"
|
"warnid" "warn-invalid-arguments"
|
||||||
"msg" "Invalid arguments"
|
"msg" "Invalid arguments"
|
||||||
"details" ($args.errmsg | append $args.warnmsg)
|
"details" ($args.errmsg | append $args.warnmsg)
|
||||||
"file" page.File
|
"file" page.File
|
||||||
)}}
|
) -}}
|
||||||
{{ end }}
|
{{- end -}}
|
||||||
|
|
||||||
{{/* Initialize local arguments */}}
|
{{/* Initialize local arguments */}}
|
||||||
{{- $parentID := or $args.parentId $args.parentID -}}
|
{{- $parentID := or $args.parentId $args.parentID -}}
|
||||||
@@ -36,16 +36,16 @@
|
|||||||
"class" "hero-image"
|
"class" "hero-image"
|
||||||
"image-overlay" $args.imageOverlay
|
"image-overlay" $args.imageOverlay
|
||||||
) }}
|
) }}
|
||||||
{{ else }}
|
{{- else -}}
|
||||||
{{ $illustration = partial $args.hook (dict "page" $args.page "image" $args.illustration) }}
|
{{- $illustration = partial $args.hook (dict "page" $args.page "image" $args.illustration) -}}
|
||||||
{{ end }}
|
{{- end -}}
|
||||||
|
|
||||||
{{/* Main code */}}
|
{{/* Main code */}}
|
||||||
{{ if not $args.err }}
|
{{- if not $args.err -}}
|
||||||
{{ if eq $type "accordion" }}
|
{{- if eq $type "accordion" -}}
|
||||||
<div class="accordion-item{{ if $args.show }} show{{ end }}{{ with $args.class }} {{ . }}{{ end }}">
|
<div class="accordion-item{{ if $args.show }} show{{ end }}{{ with $args.class }} {{ . }}{{ end }}">
|
||||||
{{- with $title -}}
|
{{- with $title -}}
|
||||||
<h2 id="accordion-{{ $parentID }}-heading-{{ $args.id }}" class="accordion-header m-0" >
|
<h2 id="accordion-{{ $parentID }}-heading-{{ $args.id }}" class="accordion-header m-0">
|
||||||
<button
|
<button
|
||||||
class="accordion-button collapsed {{ if $args.disabled }} text-secondary{{ end }}"
|
class="accordion-button collapsed {{ if $args.disabled }} text-secondary{{ end }}"
|
||||||
type="button"
|
type="button"
|
||||||
@@ -55,14 +55,14 @@
|
|||||||
aria-controls="accordion-{{ $parentID }}-item-{{ $args.id }}"
|
aria-controls="accordion-{{ $parentID }}-item-{{ $args.id }}"
|
||||||
{{ if $args.disabled }} disabled{{ end }}
|
{{ if $args.disabled }} disabled{{ end }}
|
||||||
>
|
>
|
||||||
{{ if $illustration }}
|
{{- if $illustration -}}
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3 col-sm-2 my-auto">{{ $illustration | safeHTML }}</div>
|
<div class="col-3 col-sm-2 my-auto">{{ $illustration | safeHTML }}</div>
|
||||||
<div class="col-9 col-sm-10 fs-6 fs-sm-5 my-auto">{{ . }}</div>
|
<div class="col-9 col-sm-10 fs-6 fs-sm-5 my-auto">{{ . }}</div>
|
||||||
</div>
|
</div>
|
||||||
{{ else }}
|
{{- else }}
|
||||||
{{ . }}
|
{{ . }}
|
||||||
{{ end }}
|
{{ end -}}
|
||||||
</button>
|
</button>
|
||||||
</h2>
|
</h2>
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
@@ -75,19 +75,16 @@
|
|||||||
<div class="accordion-body">{{ $args.body | $args.page.RenderString | safeHTML }}</div>
|
<div class="accordion-body">{{ $args.body | $args.page.RenderString | safeHTML }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{ else }}
|
{{- else -}}
|
||||||
<div
|
<div
|
||||||
id="{{ $parentID }}-{{ $args.id }}"
|
id="{{ $parentID }}-{{ $args.id }}"
|
||||||
class="tab-pane{{ if $args.show }} active {{ if $args.fade }}show{{ end }}{{ end }} {{ if $args.fade }}fade{{ end }}{{ with $args.class }} {{ . }}{{ end }}"
|
class="tab-pane{{ if $args.show }} active{{ if $args.fade }} show{{ end }}{{ end }}{{ if $args.fade }} fade{{ end }}{{ with $args.class }} {{ . }}{{ end }}"
|
||||||
role="tabpanel"
|
role="tabpanel"
|
||||||
aria-labelledby="{{ $parentID }}-btn-{{ $args.id }}"
|
aria-labelledby="{{ $parentID }}-btn-{{ $args.id }}"
|
||||||
tabindex="0"
|
tabindex="0"
|
||||||
data-header="{{ $title }}"
|
|
||||||
{{ if $args.show }}data-show-id="{{ $args.id }}"{{ end }}
|
|
||||||
data-has-content="{{ gt (len $args.body) 0 }}"
|
data-has-content="{{ gt (len $args.body) 0 }}"
|
||||||
{{ if $args.disabled }} data-disabled-id="{{ $args.id }}"{{ end }}
|
|
||||||
>
|
>
|
||||||
{{ $args.body | $args.page.RenderString | safeHTML }}
|
{{ $args.body | $args.page.RenderString | safeHTML }}
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{- end -}}
|
||||||
{{ end }}
|
{{- end -}}
|
@@ -42,7 +42,7 @@
|
|||||||
"class" $args.class
|
"class" $args.class
|
||||||
"body" (or $item.Description $item.Content)
|
"body" (or $item.Description $item.Content)
|
||||||
"show" false
|
"show" false
|
||||||
"disabled" false
|
"disabled" $item.disabled
|
||||||
"item_type" "accordion"
|
"item_type" "accordion"
|
||||||
"illustration" (partial "utilities/GetIllustration.html" (dict "item" $item "size" "col-12"))
|
"illustration" (partial "utilities/GetIllustration.html" (dict "item" $item "size" "col-12"))
|
||||||
)
|
)
|
||||||
@@ -64,11 +64,14 @@
|
|||||||
{{- range $args.list }}{{ $titles = $titles | append .Title }} {{ end -}}
|
{{- range $args.list }}{{ $titles = $titles | append .Title }} {{ end -}}
|
||||||
{{- if reflect.IsSlice $args.navTitles }}{{ $titles = $titles | append $args.navTitles }}{{ end -}}
|
{{- if reflect.IsSlice $args.navTitles }}{{ $titles = $titles | append $args.navTitles }}{{ end -}}
|
||||||
{{- range $index, $item := $titles -}}
|
{{- range $index, $item := $titles -}}
|
||||||
{{ $show := eq $index 0}}
|
{{ $itemID := printf "%s-btn-%d" $args.id $index -}}
|
||||||
|
{{- $show := eq $index 0 -}}
|
||||||
|
{{- if $args.navShow }}{{ $show = eq $args.navShow $itemID }}{{ end -}}
|
||||||
|
{{- $disabled := in $args.navDisabled $itemID -}}
|
||||||
<li class="nav-item" role="presentation">
|
<li class="nav-item" role="presentation">
|
||||||
<button
|
<button
|
||||||
class="nav-link {{ if not $wrap }} text-nowrap{{ end }}{{ if $show }} active{{ end }}"
|
class="nav-link{{ if not $wrap }} text-nowrap{{ end }}{{ if $show }} active{{ end }}{{ if $disabled }} disabled{{ end }}"
|
||||||
id="nav-{{ $id }}-btn-{{ $index }}"
|
id="{{ $itemID }}"
|
||||||
data-bs-toggle="pill"
|
data-bs-toggle="pill"
|
||||||
data-bs-target="#{{ $id }}-{{ $index }}"
|
data-bs-target="#{{ $id }}-{{ $index }}"
|
||||||
type="button"
|
type="button"
|
||||||
@@ -82,7 +85,7 @@
|
|||||||
{{ end -}}
|
{{ end -}}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<div class="tab-content {{ if eq $type "tabs" }}border border-bottom-0 p-3{{ else if $args.vertical }}ms-3{{ else }}mt-3{{ end }}">
|
<div class="tab-content {{ if eq $type "tabs" }}border p-3{{ else if $args.vertical }}ms-3{{ else }}mt-3{{ end }}">
|
||||||
{{- range $index, $item := $args.list -}}
|
{{- range $index, $item := $args.list -}}
|
||||||
{{- $header := $item.Title -}}
|
{{- $header := $item.Title -}}
|
||||||
{-{ $body := $item.Content -}}
|
{-{ $body := $item.Content -}}
|
||||||
|
@@ -26,8 +26,9 @@
|
|||||||
{{- $preheading := $args.heading.preheading }}
|
{{- $preheading := $args.heading.preheading }}
|
||||||
{{- $title := $args.heading.title }}
|
{{- $title := $args.heading.title }}
|
||||||
{{- $width := $args.heading.width | default 12 -}}
|
{{- $width := $args.heading.width | default 12 -}}
|
||||||
|
{{- $width = cond (lt $width 12) (printf "col-12 col-%s-%d" $breakpoint.current $width) "" }}
|
||||||
{{ if and (not $preheading) $args.useSection }}{{ $preheading = page.CurrentSection.Name }}{{ end }}
|
{{ if and (not $preheading) $args.useSection }}{{ $preheading = page.CurrentSection.Name }}{{ end }}
|
||||||
|
{{ $justify := cond (eq $args.justify "start") "" (cond (eq $args.justify "end") "me-0" "mx-auto") }}
|
||||||
|
|
||||||
{{ if site.Params.main.titleCase }}
|
{{ if site.Params.main.titleCase }}
|
||||||
{{ $preheading = title $preheading }}
|
{{ $preheading = title $preheading }}
|
||||||
@@ -85,7 +86,7 @@
|
|||||||
}}
|
}}
|
||||||
|
|
||||||
<!-- Main code -->
|
<!-- Main code -->
|
||||||
<div class="text-{{ $args.heading.align }}{{ with $args.class }} {{ . }}{{ end }}{{ if lt $width 12 }} col-12 col-{{ $breakpoint.current }}-{{ $width }}{{ end }} py-{{ $padding.y }}">
|
<div class="text-{{ $args.heading.align }}{{ with $justify }} {{ . }}{{ end }}{{ with $args.class }} {{ . }}{{ end }}{{ with $width }} {{ . }}{{ end }} py-{{ $padding.y }}">
|
||||||
{{ if and $preheading (eq $arrangement "first") }}
|
{{ if and $preheading (eq $arrangement "first") }}
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
@@ -45,7 +45,7 @@
|
|||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
<div class="py-3 text-body-secondary hstack gap-1">
|
<div class="py-3 text-body-secondary hstack gap-1">
|
||||||
{{ T "shareLink" "" }}
|
{{ T "shareLink" " " }}
|
||||||
{{- range $index, $item := $list -}}
|
{{- range $index, $item := $list -}}
|
||||||
{{- $url := $item.url -}}
|
{{- $url := $item.url -}}
|
||||||
{{- $url = replace $url "{url}" $page.Permalink -}}
|
{{- $url = replace $url "{url}" $page.Permalink -}}
|
||||||
|
@@ -104,6 +104,7 @@
|
|||||||
"links" $args.links
|
"links" $args.links
|
||||||
"link-type" (or $args.linkType $args.type)
|
"link-type" (or $args.linkType $args.type)
|
||||||
"arrangement" $arrangement
|
"arrangement" $arrangement
|
||||||
|
"justify" $args.justify
|
||||||
) }}
|
) }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
@@ -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) -}}
|
|
@@ -35,21 +35,23 @@
|
|||||||
|
|
||||||
{{ $blocks = $blocks | append (dict
|
{{ $blocks = $blocks | append (dict
|
||||||
"_bookshop_name" "hero"
|
"_bookshop_name" "hero"
|
||||||
"heading" (dict "title" $pageTitle "align" $page.Site.Params.modules.bookshop.hero.align)
|
"heading" (dict "title" $pageTitle "align" $page.Site.Params.modules.bookshop.hero.align)
|
||||||
"breadcrumb" $breadcrumb
|
"breadcrumb" $breadcrumb
|
||||||
"background" (dict "backdrop" $page.Site.Params.modules.bookshop.hero.backdrop)
|
"background" (dict "backdrop" $page.Site.Params.modules.bookshop.hero.backdrop)
|
||||||
"overlay-mode" $page.Site.Params.modules.bookshop.hero.overlayMode
|
"overlay-mode" $page.Site.Params.modules.bookshop.hero.overlayMode
|
||||||
|
"justify" "start"
|
||||||
)}}
|
)}}
|
||||||
|
|
||||||
{{ if eq $page.Kind "section" }}
|
{{ if eq $page.Kind "section" }}
|
||||||
{{ $blocks = $blocks | append (dict
|
{{ $blocks = $blocks | append (dict
|
||||||
"_bookshop_name" "articles"
|
"_bookshop_name" "articles"
|
||||||
"hide-empty" false
|
"hide-empty" false
|
||||||
"input" (dict "section" $page.Section "reverse" true "sort" "date" "nested" true)
|
"input" (dict "section" $page.Section "reverse" true "sort" "date" "nested" true)
|
||||||
"cols" 3
|
"cols" 3
|
||||||
"padding" "0"
|
"padding" "0"
|
||||||
"paginate" true
|
"paginate" true
|
||||||
"scroll" false
|
"scroll" false
|
||||||
|
"justify" "start"
|
||||||
)}}
|
)}}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
@@ -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 */}}
|
||||||
|
@@ -73,7 +73,7 @@
|
|||||||
</ul>
|
</ul>
|
||||||
<div class="border-start border-end border-bottom mb-3">
|
<div class="border-start border-end border-bottom mb-3">
|
||||||
<div class="collapse multi-{{ $id }}{{ if $args.show }} show{{ end }} syntax-highlight" id="body-{{ $id }}">
|
<div class="collapse multi-{{ $id }}{{ if $args.show }} show{{ end }} syntax-highlight" id="body-{{ $id }}">
|
||||||
{{- highlight (trim $content "\r\n") $lang $args.options -}}
|
{{- highlight (trim $content "\r\n") $lang (or $args.highlightOptions $args.options) -}}
|
||||||
</div>
|
</div>
|
||||||
<div class="collapse multi-{{ $id }}{{ if not $args.show }} show{{ end }} p-3" id="footer-{{ $id }}">
|
<div class="collapse multi-{{ $id }}{{ if not $args.show }} show{{ end }} p-3" id="footer-{{ $id }}">
|
||||||
<a class="nav-link active"
|
<a class="nav-link active"
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
{{/* Initialize local arguments */}}
|
{{/* Initialize local arguments */}}
|
||||||
{{- $text := or $args.text $args.title }}
|
{{- $text := trim (or $args.text $args.title) " \n\r" }}
|
||||||
{{- if not $text -}}
|
{{- if not $text -}}
|
||||||
{{- partial "utilities/LogErr.html" (dict
|
{{- partial "utilities/LogErr.html" (dict
|
||||||
"partial" "shortcodes/kbd.html"
|
"partial" "shortcodes/kbd.html"
|
||||||
@@ -36,6 +36,6 @@
|
|||||||
{{/* Main code */}}
|
{{/* Main code */}}
|
||||||
{{- if not $error }}
|
{{- if not $error }}
|
||||||
<kbd {{ if or $args.color $args.class }}class="{{ with $args.color }}text-bg-{{ . }} {{ end }}{{ $args.class }}"{{ end }}>
|
<kbd {{ if or $args.color $args.class }}class="{{ with $args.color }}text-bg-{{ . }} {{ end }}{{ $args.class }}"{{ end }}>
|
||||||
{{ $text | plainify }}
|
{{- $text -}}
|
||||||
</kbd>
|
</kbd>
|
||||||
{{ end -}}
|
{{ end -}}
|
||||||
|
@@ -30,6 +30,8 @@
|
|||||||
{{- if isset .Parent.Params "fade" }}{{ $parentFade = partial "utilities/CastBool.html" (.Parent.Get "fade") }}{{ end -}}
|
{{- if isset .Parent.Params "fade" }}{{ $parentFade = partial "utilities/CastBool.html" (.Parent.Get "fade") }}{{ end -}}
|
||||||
{{- $fade = or $fade $parentFade -}}
|
{{- $fade = or $fade $parentFade -}}
|
||||||
{{- $title := or $args.title $args.header -}}
|
{{- $title := or $args.title $args.header -}}
|
||||||
|
{{- $itemID := printf "%s-btn-%d" $parent $id }}
|
||||||
|
{{- $disabledID := cond $args.disabled $itemID "" }}
|
||||||
{{- $body := trim .Inner " \r\n" -}}
|
{{- $body := trim .Inner " \r\n" -}}
|
||||||
{{- $current := "" -}}
|
{{- $current := "" -}}
|
||||||
|
|
||||||
@@ -49,15 +51,19 @@
|
|||||||
|
|
||||||
{{- $current := .Parent.Scratch.Get "inner" -}}
|
{{- $current := .Parent.Scratch.Get "inner" -}}
|
||||||
{{- $titles := .Parent.Scratch.Get "inner-title" -}}
|
{{- $titles := .Parent.Scratch.Get "inner-title" -}}
|
||||||
|
{{- $disabled := .Parent.Scratch.Get "inner-disabled" -}}
|
||||||
|
{{- if $args.show }}{{ .Parent.Scratch.Set "inner-show" $itemID }}{{ end -}}
|
||||||
{{- if $current -}}
|
{{- if $current -}}
|
||||||
{{- .Parent.Scratch.Set "inner" (print $current $output) -}}
|
{{- .Parent.Scratch.Set "inner" (print $current $output) -}}
|
||||||
{{- .Parent.Scratch.Set "inner-title" ($titles | append $title) -}}
|
{{- .Parent.Scratch.Set "inner-title" ($titles | append $title) -}}
|
||||||
|
{{- .Parent.Scratch.Set "inner-disabled" ($disabled | append $disabledID) -}}
|
||||||
{{- else -}}
|
{{- else -}}
|
||||||
{{- .Parent.Scratch.Set "inner" $output -}}
|
{{- .Parent.Scratch.Set "inner" $output -}}
|
||||||
{{- .Parent.Scratch.Set "inner-title" (slice $title) -}}
|
{{- .Parent.Scratch.Set "inner-title" (slice $title) -}}
|
||||||
|
{{- .Parent.Scratch.Set "inner-disabled" (slice $disabledID) -}}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
{{- $alternative := partial "assets/nav-item" (dict
|
{{- $alternative := partial "assets/nav-item.html" (dict
|
||||||
"page" .Page
|
"page" .Page
|
||||||
"id" $id
|
"id" $id
|
||||||
"parent-id" $parent
|
"parent-id" $parent
|
||||||
|
@@ -19,6 +19,8 @@
|
|||||||
|
|
||||||
{{- $inner := .Scratch.Get "inner" -}}
|
{{- $inner := .Scratch.Get "inner" -}}
|
||||||
{{- $innerTitles := .Scratch.Get "inner-title" -}}
|
{{- $innerTitles := .Scratch.Get "inner-title" -}}
|
||||||
|
{{- $innerDisabled := .Scratch.Get "inner-disabled" -}}
|
||||||
|
{{- $innerShow := .Scratch.Get "inner-show" -}}
|
||||||
{{- $input := trim .Inner " \r\n" -}}
|
{{- $input := trim .Inner " \r\n" -}}
|
||||||
{{- if $input -}}
|
{{- if $input -}}
|
||||||
{{- $input = replace $input "\n" "\n " -}}
|
{{- $input = replace $input "\n" "\n " -}}
|
||||||
@@ -28,17 +30,19 @@
|
|||||||
{{/* Main code */}}
|
{{/* Main code */}}
|
||||||
{{- if not $args.err -}}
|
{{- if not $args.err -}}
|
||||||
{{- partial "assets/nav.html" (dict
|
{{- partial "assets/nav.html" (dict
|
||||||
"id" (or $args.id (printf "nav-%d" .Ordinal))
|
"id" (or $args.id (printf "nav-%d" .Ordinal))
|
||||||
"page" .Page
|
"page" .Page
|
||||||
"list" $args.list
|
"list" $args.list
|
||||||
"nav-items" $inner
|
"nav-items" $inner
|
||||||
"nav-titles" $innerTitles
|
"nav-titles" $innerTitles
|
||||||
"tab-type" (or $args.tabType $args.type)
|
"nav-disabled" $innerDisabled
|
||||||
"vertical" $args.vertical
|
"nav-show" $innerShow
|
||||||
"word-wrap" $args.wordWrap
|
"tab-type" (or $args.tabType $args.type)
|
||||||
"class" $args.class
|
"vertical" $args.vertical
|
||||||
"pane" $args.pane
|
"word-wrap" $args.wordWrap
|
||||||
"width" $args.width
|
"class" $args.class
|
||||||
|
"pane" $args.pane
|
||||||
|
"width" $args.width
|
||||||
)
|
)
|
||||||
-}}
|
-}}
|
||||||
{{- end -}}
|
{{- end -}}
|
@@ -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) }}
|
||||||
|
@@ -27,9 +27,10 @@
|
|||||||
{{ if .Date }}
|
{{ if .Date }}
|
||||||
{{ $lastmodstr := (partial "utilities/date.html" (dict "date" .Lastmod "format" "long")) -}}
|
{{ $lastmodstr := (partial "utilities/date.html" (dict "date" .Lastmod "format" "long")) -}}
|
||||||
{{ $datestr := (partial "utilities/date.html" (dict "date" .Date "format" "long")) -}}
|
{{ $datestr := (partial "utilities/date.html" (dict "date" .Date "format" "long")) -}}
|
||||||
{{ $datestr | i18n "postedOnDate" -}}
|
{{ if gt .Lastmod .Date }}
|
||||||
{{ if eq $metadata "full" }}
|
{{ $lastmodstr | i18n "lastModified" }}
|
||||||
{{ if ne $datestr $lastmodstr -}} ({{ $lastmodstr | i18n "lastModified" }}){{ end }}
|
{{ else }}
|
||||||
|
{{ $datestr | i18n "postedOnDate" -}}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
•
|
•
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
@@ -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">
|
||||||
|
154
package-lock.json
generated
154
package-lock.json
generated
@@ -1,25 +1,25 @@
|
|||||||
{
|
{
|
||||||
"name": "@gethinode/hinode",
|
"name": "@gethinode/hinode",
|
||||||
"version": "1.0.0-beta",
|
"version": "1.0.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@gethinode/hinode",
|
"name": "@gethinode/hinode",
|
||||||
"version": "1.0.0-beta",
|
"version": "1.0.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fullhuman/postcss-purgecss": "^7.0.2",
|
"@fullhuman/postcss-purgecss": "^7.0.2",
|
||||||
"autoprefixer": "^10.4.21",
|
"autoprefixer": "^10.4.21",
|
||||||
"cssnano": "^7.0.7",
|
"cssnano": "^7.0.7",
|
||||||
"cssnano-preset-advanced": "^7.0.7",
|
"cssnano-preset-advanced": "^7.0.7",
|
||||||
"hugo-bin": "0.144.8",
|
"hugo-bin": "0.144.9",
|
||||||
"purgecss-whitelister": "^2.4.0"
|
"purgecss-whitelister": "^2.4.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@gethinode/netlify-plugin-dartsass": "^0.3.0",
|
"@gethinode/netlify-plugin-dartsass": "^0.3.0",
|
||||||
"cpy-cli": "^5.0.0",
|
"cpy-cli": "^5.0.0",
|
||||||
"eslint": "^9.29.0",
|
"eslint": "^9.30.0",
|
||||||
"markdownlint-cli2": "^0.18.1",
|
"markdownlint-cli2": "^0.18.1",
|
||||||
"neostandard": "^0.12.1",
|
"neostandard": "^0.12.1",
|
||||||
"netlify-plugin-hugo-cache-resources": "^0.2.1",
|
"netlify-plugin-hugo-cache-resources": "^0.2.1",
|
||||||
@@ -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": {
|
||||||
@@ -329,9 +329,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@eslint/config-array": {
|
"node_modules/@eslint/config-array": {
|
||||||
"version": "0.20.1",
|
"version": "0.21.0",
|
||||||
"resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.20.1.tgz",
|
"resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.0.tgz",
|
||||||
"integrity": "sha512-OL0RJzC/CBzli0DrrR31qzj6d6i6Mm3HByuhflhl4LOBiWxN+3i6/t/ZQQNii4tjksXi8r2CRW1wMpWA2ULUEw==",
|
"integrity": "sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@@ -344,9 +344,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@eslint/config-helpers": {
|
"node_modules/@eslint/config-helpers": {
|
||||||
"version": "0.2.1",
|
"version": "0.3.0",
|
||||||
"resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.2.1.tgz",
|
"resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.3.0.tgz",
|
||||||
"integrity": "sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==",
|
"integrity": "sha512-ViuymvFmcJi04qdZeDc2whTHryouGcDlaxPqarTD0ZE10ISpxGUVZGZDx4w01upyIynL3iu6IXH2bS1NhclQMw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -391,9 +391,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@eslint/js": {
|
"node_modules/@eslint/js": {
|
||||||
"version": "9.29.0",
|
"version": "9.30.0",
|
||||||
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.29.0.tgz",
|
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.30.0.tgz",
|
||||||
"integrity": "sha512-3PIF4cBw/y+1u2EazflInpV+lYsSG0aByVIQzAgb1m1MhHFSbqTyNqtBKHgWf/9Ykud+DhILS9EGkmekVhbKoQ==",
|
"integrity": "sha512-Wzw3wQwPvc9sHM+NjakWTcPx11mbZyiYHuwWa/QfZ7cIRX7WK54PSk7bdyXDaoaopUcMatv1zaQvOAAO8hCdww==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -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": {
|
||||||
@@ -2875,19 +2875,19 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/eslint": {
|
"node_modules/eslint": {
|
||||||
"version": "9.29.0",
|
"version": "9.30.0",
|
||||||
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.29.0.tgz",
|
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.30.0.tgz",
|
||||||
"integrity": "sha512-GsGizj2Y1rCWDu6XoEekL3RLilp0voSePurjZIkxL3wlm5o5EC9VpgaP7lrCvjnkuLvzFBQWB3vWB3K5KQTveQ==",
|
"integrity": "sha512-iN/SiPxmQu6EVkf+m1qpBxzUhE12YqFLOSySuOyVLJLEF9nzTf+h/1AJYc1JWzCnktggeNrjvQGLngDzXirU6g==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@eslint-community/eslint-utils": "^4.2.0",
|
"@eslint-community/eslint-utils": "^4.2.0",
|
||||||
"@eslint-community/regexpp": "^4.12.1",
|
"@eslint-community/regexpp": "^4.12.1",
|
||||||
"@eslint/config-array": "^0.20.1",
|
"@eslint/config-array": "^0.21.0",
|
||||||
"@eslint/config-helpers": "^0.2.1",
|
"@eslint/config-helpers": "^0.3.0",
|
||||||
"@eslint/core": "^0.14.0",
|
"@eslint/core": "^0.14.0",
|
||||||
"@eslint/eslintrc": "^3.3.1",
|
"@eslint/eslintrc": "^3.3.1",
|
||||||
"@eslint/js": "9.29.0",
|
"@eslint/js": "9.30.0",
|
||||||
"@eslint/plugin-kit": "^0.3.1",
|
"@eslint/plugin-kit": "^0.3.1",
|
||||||
"@humanfs/node": "^0.16.6",
|
"@humanfs/node": "^0.16.6",
|
||||||
"@humanwhocodes/module-importer": "^1.0.1",
|
"@humanwhocodes/module-importer": "^1.0.1",
|
||||||
@@ -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"
|
||||||
},
|
},
|
||||||
@@ -4266,9 +4266,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/hugo-bin": {
|
"node_modules/hugo-bin": {
|
||||||
"version": "0.144.8",
|
"version": "0.144.9",
|
||||||
"resolved": "https://registry.npmjs.org/hugo-bin/-/hugo-bin-0.144.8.tgz",
|
"resolved": "https://registry.npmjs.org/hugo-bin/-/hugo-bin-0.144.9.tgz",
|
||||||
"integrity": "sha512-ZqXy5cvfMJ1FSGrO62rp9koEZ+bXHcw1gPKV5LJDveYKMEFmnBy4TW8KWD0joPyHKD1xKRpVnOL13/AQx8NxlA==",
|
"integrity": "sha512-SsAgkkXTl0Mwzgf5HYiE8gmWwfAkCCs7KFcVt0uZjmPI+Xflr3q9maxEDcNmTxSp/NMLSnPhqcGZwlHzh5oXMw==",
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
"type": "github",
|
"type": "github",
|
||||||
@@ -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-beta",
|
"version": "1.0.0",
|
||||||
"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",
|
||||||
@@ -73,13 +73,13 @@
|
|||||||
"autoprefixer": "^10.4.21",
|
"autoprefixer": "^10.4.21",
|
||||||
"cssnano": "^7.0.7",
|
"cssnano": "^7.0.7",
|
||||||
"cssnano-preset-advanced": "^7.0.7",
|
"cssnano-preset-advanced": "^7.0.7",
|
||||||
"hugo-bin": "0.144.8",
|
"hugo-bin": "0.144.9",
|
||||||
"purgecss-whitelister": "^2.4.0"
|
"purgecss-whitelister": "^2.4.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@gethinode/netlify-plugin-dartsass": "^0.3.0",
|
"@gethinode/netlify-plugin-dartsass": "^0.3.0",
|
||||||
"cpy-cli": "^5.0.0",
|
"cpy-cli": "^5.0.0",
|
||||||
"eslint": "^9.29.0",
|
"eslint": "^9.30.0",
|
||||||
"markdownlint-cli2": "^0.18.1",
|
"markdownlint-cli2": "^0.18.1",
|
||||||
"neostandard": "^0.12.1",
|
"neostandard": "^0.12.1",
|
||||||
"netlify-plugin-hugo-cache-resources": "^0.2.1",
|
"netlify-plugin-hugo-cache-resources": "^0.2.1",
|
||||||
@@ -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