mirror of
https://github.com/gethinode/hinode.git
synced 2025-10-08 18:44:24 +00:00
Compare commits
53 Commits
v0.27.0-be
...
v0.27.0
Author | SHA1 | Date | |
---|---|---|---|
![]() |
a0cbdd0cbb | ||
![]() |
1ed825d7ca | ||
![]() |
09099eba58 | ||
![]() |
58b2eebea5 | ||
![]() |
46a2a6c994 | ||
![]() |
0dcec12256 | ||
![]() |
50a188e807 | ||
![]() |
400f27dcc9 | ||
![]() |
90bcc744ff | ||
![]() |
cf0fae6dc1 | ||
![]() |
1b39d23ddf | ||
![]() |
c94249408c | ||
![]() |
f4f207fa25 | ||
![]() |
307067629e | ||
![]() |
f9174e4505 | ||
![]() |
320d44c78d | ||
![]() |
091526a17b | ||
![]() |
9ec61d645d | ||
![]() |
0630043210 | ||
![]() |
2933d1d3bb | ||
![]() |
aa5118cdf6 | ||
![]() |
ec1c87070b | ||
![]() |
e806dc07a4 | ||
![]() |
9e7478f4c4 | ||
![]() |
686dd1c946 | ||
![]() |
548a2fa835 | ||
![]() |
1338df7b8a | ||
![]() |
150e438c59 | ||
![]() |
285f262a01 | ||
![]() |
7989dd17d4 | ||
![]() |
5f4070b481 | ||
![]() |
00160137e8 | ||
![]() |
51510ae047 | ||
![]() |
4fc95db0e9 | ||
![]() |
a1f899c1de | ||
![]() |
e358e737be | ||
![]() |
0e35d26f20 | ||
![]() |
ede04405d1 | ||
![]() |
30aa2df2d2 | ||
![]() |
47d582f855 | ||
![]() |
fa1fcc3dd0 | ||
![]() |
04bc95720b | ||
![]() |
5c539ec003 | ||
![]() |
b19201e561 | ||
![]() |
7e21c93e22 | ||
![]() |
c81efe61d0 | ||
![]() |
6fe8e12509 | ||
![]() |
44b243489b | ||
![]() |
548dca2bb1 | ||
![]() |
b3e47b85f3 | ||
![]() |
087d3666b8 | ||
![]() |
77f4354499 | ||
![]() |
362bf368ce |
@@ -5,12 +5,13 @@ const modeSelectors = document.querySelectorAll('.switch-mode-collapsed')
|
|||||||
const colorsBG = ['body', 'secondary', 'tertiary']
|
const colorsBG = ['body', 'secondary', 'tertiary']
|
||||||
|
|
||||||
function updateNavbar () {
|
function updateNavbar () {
|
||||||
|
let storedTheme
|
||||||
|
if (typeof getLocalStorage === "function") {
|
||||||
|
storedTheme = getLocalStorage('theme', null, 'functional')
|
||||||
|
}
|
||||||
|
|
||||||
if (window.scrollY > 75) {
|
if (window.scrollY > 75) {
|
||||||
navbar.classList.add('nav-active')
|
navbar.classList.add('nav-active')
|
||||||
let storedTheme
|
|
||||||
if (typeof getLocalStorage === "function") {
|
|
||||||
storedTheme = getLocalStorage('theme', null, 'functional')
|
|
||||||
}
|
|
||||||
if (storedTheme) {
|
if (storedTheme) {
|
||||||
navbar.setAttribute('data-bs-theme', storedTheme)
|
navbar.setAttribute('data-bs-theme', storedTheme)
|
||||||
}
|
}
|
||||||
@@ -18,7 +19,8 @@ function updateNavbar () {
|
|||||||
navbar.classList.remove('nav-active')
|
navbar.classList.remove('nav-active')
|
||||||
const defaultTheme = navbar.getAttribute('data-bs-overlay')
|
const defaultTheme = navbar.getAttribute('data-bs-overlay')
|
||||||
|
|
||||||
if (defaultTheme) {
|
const targetTheme = defaultTheme ? defaultTheme : storedTheme
|
||||||
|
if (targetTheme) {
|
||||||
navbar.setAttribute('data-bs-theme', defaultTheme)
|
navbar.setAttribute('data-bs-theme', defaultTheme)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -10,6 +10,8 @@
|
|||||||
footerBelowFold = false
|
footerBelowFold = false
|
||||||
loading = "lazy"
|
loading = "lazy"
|
||||||
breakpoint = "md"
|
breakpoint = "md"
|
||||||
|
[main.internalLinks]
|
||||||
|
validate = true
|
||||||
[main.externalLinks]
|
[main.externalLinks]
|
||||||
cue = false
|
cue = false
|
||||||
tab = false
|
tab = false
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
Content-Security-Policy = """
|
Content-Security-Policy = """
|
||||||
base-uri 'self'; \
|
base-uri 'self'; \
|
||||||
connect-src 'self' *.google-analytics.com *.analytics.google.com *.googletagmanager.com; \
|
connect-src 'self' *.google-analytics.com *.analytics.google.com *.googletagmanager.com; \
|
||||||
default-src 'none' 'self'; \
|
default-src 'none'; \
|
||||||
font-src 'self' fonts.gstatic.com; \
|
font-src 'self' fonts.gstatic.com; \
|
||||||
form-action 'self'; \
|
form-action 'self'; \
|
||||||
frame-src player.cloudinary.com player.vimeo.com www.youtube-nocookie.com www.youtube.com; \
|
frame-src player.cloudinary.com player.vimeo.com www.youtube-nocookie.com www.youtube.com; \
|
||||||
|
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
module.exports = require('neostandard')({
|
module.exports = require('neostandard')({
|
||||||
ignores: [
|
ignores: [
|
||||||
'assets/js/critical/functional/languageSelector.js',
|
'assets/js/critical/languageSelector.js',
|
||||||
'assets/js/critical/functional/color.js',
|
'assets/js/critical/color.js',
|
||||||
'assets/js/analytics.js',
|
'assets/js/analytics.js',
|
||||||
'assets/js/flexsearch.js',
|
'assets/js/flexsearch.js',
|
||||||
'assets/js/navbar.js',
|
'assets/js/navbar.js',
|
||||||
|
19
exampleSite/config/_default/netlify.toml
Normal file
19
exampleSite/config/_default/netlify.toml
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
[[redirects]]
|
||||||
|
from = '/fr/*'
|
||||||
|
to = '/fr/404.html'
|
||||||
|
status = 404
|
||||||
|
|
||||||
|
[[redirects]]
|
||||||
|
from = '/nl/*'
|
||||||
|
to = '/nl/404.html'
|
||||||
|
status = 404
|
||||||
|
|
||||||
|
[[redirects]]
|
||||||
|
from = '/en/*'
|
||||||
|
to = '/en/404.html'
|
||||||
|
status = 404
|
||||||
|
|
||||||
|
[[redirects]] # Default language should be last.
|
||||||
|
from = '/*'
|
||||||
|
to = '/en/404.html'
|
||||||
|
status = 404
|
@@ -8,6 +8,8 @@
|
|||||||
footerBelowFold = false
|
footerBelowFold = false
|
||||||
loading = "lazy"
|
loading = "lazy"
|
||||||
breakpoint = "md"
|
breakpoint = "md"
|
||||||
|
[main.internalLinks]
|
||||||
|
validate = true
|
||||||
[main.externalLinks]
|
[main.externalLinks]
|
||||||
cue = true
|
cue = true
|
||||||
tab = true
|
tab = true
|
||||||
|
@@ -7,17 +7,17 @@
|
|||||||
Access-Control-Allow-Origin = '*'
|
Access-Control-Allow-Origin = '*'
|
||||||
Content-Security-Policy = """
|
Content-Security-Policy = """
|
||||||
base-uri 'self'; \
|
base-uri 'self'; \
|
||||||
connect-src 'self' *.google-analytics.com *.analytics.google.com *.googletagmanager.com; \
|
connect-src 'self' *.cookieyes.com cdn-cookieyes.com *.google-analytics.com *.analytics.google.com *.googletagmanager.com; \
|
||||||
default-src 'none'; \
|
default-src 'none'; \
|
||||||
font-src 'self' fonts.gstatic.com; \
|
font-src 'self' fonts.gstatic.com; \
|
||||||
form-action 'self'; \
|
form-action 'self'; \
|
||||||
frame-src player.cloudinary.com player.vimeo.com www.youtube-nocookie.com www.youtube.com; \
|
frame-src player.cloudinary.com player.vimeo.com www.youtube-nocookie.com www.youtube.com; \
|
||||||
img-src 'self' *.google-analytics.com *.googletagmanager.com data: *.imgix.net *.imagekit.io *.cloudinary.com i.vimeocdn.com i.ytimg.com tile.openstreetmap.org; \
|
img-src 'self' cdn-cookieyes.com *.google-analytics.com *.googletagmanager.com data: *.imgix.net *.imagekit.io *.cloudinary.com i.vimeocdn.com i.ytimg.com tile.openstreetmap.org; \
|
||||||
manifest-src 'self'; \
|
manifest-src 'self'; \
|
||||||
media-src 'self'; \
|
media-src 'self'; \
|
||||||
object-src 'none'; \
|
object-src 'none'; \
|
||||||
script-src 'self' *.google-analytics.com *.googletagmanager.com; \
|
script-src 'self' cdn-cookieyes.com *.google-analytics.com *.googletagmanager.com; \
|
||||||
style-src 'self' www.youtube.com; \
|
style-src 'self' 'unsafe-inline' www.youtube.com; \
|
||||||
"""
|
"""
|
||||||
Permissions-Policy = 'geolocation=(), midi=(), sync-xhr=(), microphone=(), camera=(), magnetometer=(), gyroscope=(), fullscreen=(), payment=() '
|
Permissions-Policy = 'geolocation=(), midi=(), sync-xhr=(), microphone=(), camera=(), magnetometer=(), gyroscope=(), fullscreen=(), payment=() '
|
||||||
Referrer-Policy = 'strict-origin'
|
Referrer-Policy = 'strict-origin'
|
||||||
@@ -27,3 +27,23 @@
|
|||||||
X-XSS-Protection = '1; mode=block'
|
X-XSS-Protection = '1; mode=block'
|
||||||
cache-control = 'max-age=0, no-cache, no-store, must-revalidate '
|
cache-control = 'max-age=0, no-cache, no-store, must-revalidate '
|
||||||
|
|
||||||
|
[[redirects]]
|
||||||
|
from = '/fr/*'
|
||||||
|
status = 404
|
||||||
|
to = '/fr/404.html'
|
||||||
|
|
||||||
|
[[redirects]]
|
||||||
|
from = '/nl/*'
|
||||||
|
status = 404
|
||||||
|
to = '/nl/404.html'
|
||||||
|
|
||||||
|
[[redirects]]
|
||||||
|
from = '/en/*'
|
||||||
|
status = 404
|
||||||
|
to = '/en/404.html'
|
||||||
|
|
||||||
|
[[redirects]]
|
||||||
|
from = '/*'
|
||||||
|
status = 404
|
||||||
|
to = '/en/404.html'
|
||||||
|
|
||||||
|
63
exampleSite/data/server.toml
Normal file
63
exampleSite/data/server.toml
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
# toml-docs-start server-config
|
||||||
|
[[headers]]
|
||||||
|
for = "/**"
|
||||||
|
[headers.values]
|
||||||
|
Strict-Transport-Security = "max-age=31536000; includeSubDomains; preload"
|
||||||
|
X-Content-Type-Options = "nosniff"
|
||||||
|
X-XSS-Protection = "1; mode=block"
|
||||||
|
X-Frame-Options = "SAMEORIGIN"
|
||||||
|
Referrer-Policy = "strict-origin"
|
||||||
|
Permissions-Policy = """\
|
||||||
|
geolocation=(), \
|
||||||
|
midi=(), \
|
||||||
|
sync-xhr=(), \
|
||||||
|
microphone=(), \
|
||||||
|
camera=(), \
|
||||||
|
magnetometer=(), \
|
||||||
|
gyroscope=(), \
|
||||||
|
fullscreen=(), \
|
||||||
|
payment=() \
|
||||||
|
"""
|
||||||
|
cache-control = """\
|
||||||
|
max-age=0, \
|
||||||
|
no-cache, \
|
||||||
|
no-store, \
|
||||||
|
must-revalidate \
|
||||||
|
"""
|
||||||
|
Access-Control-Allow-Origin = "*"
|
||||||
|
Content-Security-Policy = """\
|
||||||
|
default-src 'none'; \
|
||||||
|
script-src 'self'; \
|
||||||
|
font-src 'self'; \
|
||||||
|
connect-src 'self'; \
|
||||||
|
img-src 'self'; \
|
||||||
|
style-src 'self'; \
|
||||||
|
base-uri 'self'; \
|
||||||
|
object-src 'none'; \
|
||||||
|
form-action 'self'; \
|
||||||
|
manifest-src 'self'; \
|
||||||
|
media-src 'self' \
|
||||||
|
"""
|
||||||
|
# toml-docs-end server-config
|
||||||
|
|
||||||
|
# toml-docs-start server-custom-404
|
||||||
|
[[redirects]]
|
||||||
|
from = '/fr/*'
|
||||||
|
to = '/fr/404.html'
|
||||||
|
status = 404
|
||||||
|
|
||||||
|
[[redirects]]
|
||||||
|
from = '/nl/*'
|
||||||
|
to = '/nl/404.html'
|
||||||
|
status = 404
|
||||||
|
|
||||||
|
[[redirects]]
|
||||||
|
from = '/en/*'
|
||||||
|
to = '/en/404.html'
|
||||||
|
status = 404
|
||||||
|
|
||||||
|
[[redirects]] # Default language should be last.
|
||||||
|
from = '/*'
|
||||||
|
to = '/en/404.html'
|
||||||
|
status = 404
|
||||||
|
# toml-docs-end server-custom-404
|
@@ -3,5 +3,5 @@ module github.com/gethinode/hinode/exampleSite
|
|||||||
go 1.19
|
go 1.19
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/gethinode/mod-cookieyes/v2 v2.1.2 // indirect
|
github.com/gethinode/mod-cookieyes/v2 v2.2.2 // indirect
|
||||||
)
|
)
|
||||||
|
@@ -1 +1,2 @@
|
|||||||
github.com/gethinode/mod-cookieyes/v2 v2.0.3/go.mod h1:tULb7D7CoTycGUyL7ryqHJKaX11XuL2SN+XwP7/DI0Y=
|
github.com/gethinode/mod-cookieyes/v2 v2.2.2 h1:VNIdbZnzXw/0Jito/IcDNqQ9yRYLCGrDwyrMqtSJgE4=
|
||||||
|
github.com/gethinode/mod-cookieyes/v2 v2.2.2/go.mod h1:tULb7D7CoTycGUyL7ryqHJKaX11XuL2SN+XwP7/DI0Y=
|
||||||
|
@@ -1,15 +1,628 @@
|
|||||||
{
|
{
|
||||||
"htmlElements": {
|
"htmlElements": {
|
||||||
"tags": [
|
"tags": [
|
||||||
|
"a",
|
||||||
|
"abbr",
|
||||||
|
"annotation",
|
||||||
|
"body",
|
||||||
|
"button",
|
||||||
|
"code",
|
||||||
|
"div",
|
||||||
|
"em",
|
||||||
|
"figcaption",
|
||||||
|
"figure",
|
||||||
|
"footer",
|
||||||
|
"form",
|
||||||
|
"h2",
|
||||||
|
"h3",
|
||||||
"head",
|
"head",
|
||||||
|
"hr",
|
||||||
"html",
|
"html",
|
||||||
|
"i",
|
||||||
|
"iframe",
|
||||||
|
"img",
|
||||||
|
"input",
|
||||||
|
"label",
|
||||||
|
"li",
|
||||||
"link",
|
"link",
|
||||||
|
"mark",
|
||||||
|
"math",
|
||||||
"meta",
|
"meta",
|
||||||
|
"mfrac",
|
||||||
|
"mi",
|
||||||
|
"mn",
|
||||||
|
"mo",
|
||||||
|
"mrow",
|
||||||
|
"mspace",
|
||||||
|
"msqrt",
|
||||||
|
"msub",
|
||||||
|
"msup",
|
||||||
|
"nav",
|
||||||
"noscript",
|
"noscript",
|
||||||
|
"ol",
|
||||||
|
"p",
|
||||||
|
"path",
|
||||||
|
"pre",
|
||||||
"script",
|
"script",
|
||||||
"title"
|
"semantics",
|
||||||
|
"small",
|
||||||
|
"span",
|
||||||
|
"strong",
|
||||||
|
"sub",
|
||||||
|
"sup",
|
||||||
|
"svg",
|
||||||
|
"symbol",
|
||||||
|
"table",
|
||||||
|
"tbody",
|
||||||
|
"td",
|
||||||
|
"th",
|
||||||
|
"thead",
|
||||||
|
"time",
|
||||||
|
"title",
|
||||||
|
"tr",
|
||||||
|
"ul",
|
||||||
|
"use"
|
||||||
],
|
],
|
||||||
"classes": null,
|
"classes": [
|
||||||
"ids": null
|
"accordion",
|
||||||
|
"accordion-body",
|
||||||
|
"accordion-button",
|
||||||
|
"accordion-collapse",
|
||||||
|
"accordion-header",
|
||||||
|
"accordion-item",
|
||||||
|
"active",
|
||||||
|
"alert",
|
||||||
|
"alert-danger",
|
||||||
|
"alert-dismissible",
|
||||||
|
"align-items-center",
|
||||||
|
"align-items-end",
|
||||||
|
"align-items-start",
|
||||||
|
"align-middle",
|
||||||
|
"align-self-center",
|
||||||
|
"align-self-end",
|
||||||
|
"anchor",
|
||||||
|
"badge",
|
||||||
|
"ball",
|
||||||
|
"bg-body",
|
||||||
|
"bg-body-tertiary",
|
||||||
|
"bg-danger",
|
||||||
|
"bg-opacity-10",
|
||||||
|
"bg-primary",
|
||||||
|
"bg-primary-subtle",
|
||||||
|
"bi",
|
||||||
|
"bi-activity",
|
||||||
|
"border",
|
||||||
|
"border-0",
|
||||||
|
"border-1",
|
||||||
|
"border-bottom",
|
||||||
|
"border-end",
|
||||||
|
"border-none",
|
||||||
|
"border-start",
|
||||||
|
"border-top",
|
||||||
|
"bottom-0",
|
||||||
|
"bottom-bar",
|
||||||
|
"breadcrumb",
|
||||||
|
"breadcrumb-item",
|
||||||
|
"btn",
|
||||||
|
"btn-close",
|
||||||
|
"btn-group",
|
||||||
|
"btn-light",
|
||||||
|
"btn-link",
|
||||||
|
"btn-outline-primary",
|
||||||
|
"btn-outline-secondary",
|
||||||
|
"btn-primary",
|
||||||
|
"btn-secondary",
|
||||||
|
"btn-sm",
|
||||||
|
"btn-social",
|
||||||
|
"card",
|
||||||
|
"card-block-2",
|
||||||
|
"card-body",
|
||||||
|
"card-body-link",
|
||||||
|
"card-body-margin",
|
||||||
|
"card-button",
|
||||||
|
"card-button-link",
|
||||||
|
"card-container",
|
||||||
|
"card-container-wrapper",
|
||||||
|
"card-emphasize",
|
||||||
|
"card-icon",
|
||||||
|
"card-img-bg",
|
||||||
|
"card-img-top",
|
||||||
|
"card-img-wrap",
|
||||||
|
"card-text",
|
||||||
|
"card-title",
|
||||||
|
"card-zoom",
|
||||||
|
"carousel",
|
||||||
|
"carousel-caption",
|
||||||
|
"carousel-control-next",
|
||||||
|
"carousel-control-next-icon",
|
||||||
|
"carousel-control-prev",
|
||||||
|
"carousel-control-prev-icon",
|
||||||
|
"carousel-indicators",
|
||||||
|
"carousel-inner",
|
||||||
|
"carousel-item",
|
||||||
|
"checkbox",
|
||||||
|
"chroma",
|
||||||
|
"cky-audit-table-element",
|
||||||
|
"cky-banner-element",
|
||||||
|
"col",
|
||||||
|
"col-10",
|
||||||
|
"col-12",
|
||||||
|
"col-2",
|
||||||
|
"col-3",
|
||||||
|
"col-4",
|
||||||
|
"col-6",
|
||||||
|
"col-9",
|
||||||
|
"col-auto",
|
||||||
|
"col-lg-2",
|
||||||
|
"col-lg-4",
|
||||||
|
"col-lg-8",
|
||||||
|
"col-md-2",
|
||||||
|
"col-md-3",
|
||||||
|
"col-md-4",
|
||||||
|
"col-md-6",
|
||||||
|
"col-md-8",
|
||||||
|
"col-md-9",
|
||||||
|
"col-md-auto",
|
||||||
|
"col-sm-12",
|
||||||
|
"col-sm-3",
|
||||||
|
"col-sm-6",
|
||||||
|
"col-sm-9",
|
||||||
|
"col-xl-10",
|
||||||
|
"col-xl-2",
|
||||||
|
"collapse",
|
||||||
|
"collapsed",
|
||||||
|
"container",
|
||||||
|
"container-fluid",
|
||||||
|
"container-xxl",
|
||||||
|
"custom",
|
||||||
|
"d-block",
|
||||||
|
"d-flex",
|
||||||
|
"d-grid",
|
||||||
|
"d-inline",
|
||||||
|
"d-inline-flex",
|
||||||
|
"d-lg-block",
|
||||||
|
"d-md-block",
|
||||||
|
"d-md-flex",
|
||||||
|
"d-md-none",
|
||||||
|
"d-none",
|
||||||
|
"d-none-dark",
|
||||||
|
"d-none-light",
|
||||||
|
"d-sm-block",
|
||||||
|
"d-sm-none",
|
||||||
|
"data-table",
|
||||||
|
"display-1",
|
||||||
|
"display-4",
|
||||||
|
"dropdown",
|
||||||
|
"dropdown-divider-bg",
|
||||||
|
"dropdown-item",
|
||||||
|
"dropdown-menu",
|
||||||
|
"dropdown-menu-end",
|
||||||
|
"dropdown-toggle",
|
||||||
|
"emphasis",
|
||||||
|
"end-0",
|
||||||
|
"fa",
|
||||||
|
"fa-10x",
|
||||||
|
"fa-2x",
|
||||||
|
"fa-2xs",
|
||||||
|
"fa-4x",
|
||||||
|
"fa-activity",
|
||||||
|
"fa-arrow-left",
|
||||||
|
"fa-arrow-right",
|
||||||
|
"fa-bootstrap",
|
||||||
|
"fa-circle-check",
|
||||||
|
"fa-code",
|
||||||
|
"fa-docker",
|
||||||
|
"fa-ellipsis",
|
||||||
|
"fa-face-frown",
|
||||||
|
"fa-facebook",
|
||||||
|
"fa-fluid",
|
||||||
|
"fa-fw",
|
||||||
|
"fa-github",
|
||||||
|
"fa-globe",
|
||||||
|
"fa-heart",
|
||||||
|
"fa-house",
|
||||||
|
"fa-link",
|
||||||
|
"fa-linkedin",
|
||||||
|
"fa-magnifying-glass",
|
||||||
|
"fa-medium",
|
||||||
|
"fa-moon",
|
||||||
|
"fa-rocket",
|
||||||
|
"fa-share-nodes",
|
||||||
|
"fa-sort",
|
||||||
|
"fa-square-check",
|
||||||
|
"fa-sun",
|
||||||
|
"fa-up-right-from-square",
|
||||||
|
"fa-whatsapp",
|
||||||
|
"fa-wrapper",
|
||||||
|
"fa-x-twitter",
|
||||||
|
"fab",
|
||||||
|
"fade",
|
||||||
|
"fas",
|
||||||
|
"figure-caption",
|
||||||
|
"fixed-top",
|
||||||
|
"flex-column",
|
||||||
|
"flex-fill",
|
||||||
|
"flex-grow-1",
|
||||||
|
"flex-md-grow-0",
|
||||||
|
"flex-nowrap",
|
||||||
|
"flex-row",
|
||||||
|
"font-monospace",
|
||||||
|
"footer",
|
||||||
|
"form-control",
|
||||||
|
"fs-3",
|
||||||
|
"fs-5",
|
||||||
|
"fs-6",
|
||||||
|
"fs-lg-5",
|
||||||
|
"fs-md-5",
|
||||||
|
"fw-30",
|
||||||
|
"fw-bold",
|
||||||
|
"fw-semibold",
|
||||||
|
"g-0",
|
||||||
|
"g-3",
|
||||||
|
"g-4",
|
||||||
|
"gap-1",
|
||||||
|
"gap-2",
|
||||||
|
"gradient",
|
||||||
|
"h-100",
|
||||||
|
"h1",
|
||||||
|
"h2",
|
||||||
|
"h3",
|
||||||
|
"h4",
|
||||||
|
"h5",
|
||||||
|
"h6",
|
||||||
|
"heading",
|
||||||
|
"highlight",
|
||||||
|
"hstack",
|
||||||
|
"img-fluid",
|
||||||
|
"img-wrap",
|
||||||
|
"invisible",
|
||||||
|
"is-search",
|
||||||
|
"justify-content-between",
|
||||||
|
"justify-content-center",
|
||||||
|
"justify-content-end",
|
||||||
|
"justify-content-start",
|
||||||
|
"katex",
|
||||||
|
"label",
|
||||||
|
"lead",
|
||||||
|
"leaflet-map",
|
||||||
|
"link-bg-body",
|
||||||
|
"link-bg-body-tertiary",
|
||||||
|
"link-bg-footer",
|
||||||
|
"link-primary",
|
||||||
|
"link-secondary",
|
||||||
|
"link-success",
|
||||||
|
"link-warning",
|
||||||
|
"lottie-animation",
|
||||||
|
"m-0",
|
||||||
|
"main-content",
|
||||||
|
"main-nav-toggler",
|
||||||
|
"mb-0",
|
||||||
|
"mb-3",
|
||||||
|
"mb-5",
|
||||||
|
"mb-lg-5",
|
||||||
|
"me-3",
|
||||||
|
"me-auto",
|
||||||
|
"middle-bar",
|
||||||
|
"min-vh-100",
|
||||||
|
"mode-switch",
|
||||||
|
"ms-1",
|
||||||
|
"ms-3",
|
||||||
|
"ms-auto",
|
||||||
|
"ms-md-3",
|
||||||
|
"mt-2",
|
||||||
|
"mt-3",
|
||||||
|
"mt-4",
|
||||||
|
"mt-5",
|
||||||
|
"mt-auto",
|
||||||
|
"mt-md-0",
|
||||||
|
"multi-docs-collapse-15",
|
||||||
|
"multi-file-collapse-1",
|
||||||
|
"mx-auto",
|
||||||
|
"mx-md-0",
|
||||||
|
"mx-md-2",
|
||||||
|
"my-2",
|
||||||
|
"my-4",
|
||||||
|
"my-auto",
|
||||||
|
"my-md-0",
|
||||||
|
"my-md-auto",
|
||||||
|
"nav",
|
||||||
|
"nav-item",
|
||||||
|
"nav-link",
|
||||||
|
"nav-pills",
|
||||||
|
"nav-tabs",
|
||||||
|
"navbar",
|
||||||
|
"navbar-brand",
|
||||||
|
"navbar-collapse",
|
||||||
|
"navbar-container",
|
||||||
|
"navbar-contrast",
|
||||||
|
"navbar-expand-md",
|
||||||
|
"navbar-fixed-top",
|
||||||
|
"navbar-mode-selector",
|
||||||
|
"navbar-nav",
|
||||||
|
"navbar-nav-scroll",
|
||||||
|
"navbar-title",
|
||||||
|
"navbar-toggler",
|
||||||
|
"next",
|
||||||
|
"no-js",
|
||||||
|
"order-0",
|
||||||
|
"order-1",
|
||||||
|
"order-first",
|
||||||
|
"order-md-0",
|
||||||
|
"order-md-1",
|
||||||
|
"p-0",
|
||||||
|
"p-1",
|
||||||
|
"p-2",
|
||||||
|
"p-3",
|
||||||
|
"p-4",
|
||||||
|
"pb-2",
|
||||||
|
"pb-3",
|
||||||
|
"pb-4",
|
||||||
|
"pb-5",
|
||||||
|
"pb-md-0",
|
||||||
|
"pe-3",
|
||||||
|
"pe-5",
|
||||||
|
"persona",
|
||||||
|
"position-absolute",
|
||||||
|
"position-fixed",
|
||||||
|
"position-relative",
|
||||||
|
"post-date",
|
||||||
|
"previous",
|
||||||
|
"ps-1",
|
||||||
|
"ps-3",
|
||||||
|
"pt-1",
|
||||||
|
"pt-5",
|
||||||
|
"pt-md-3",
|
||||||
|
"ptw-3",
|
||||||
|
"ptw-5",
|
||||||
|
"ptw-lg-5",
|
||||||
|
"ptw-sm-4",
|
||||||
|
"px-2",
|
||||||
|
"px-4",
|
||||||
|
"px-xxl-0",
|
||||||
|
"py-1",
|
||||||
|
"py-2",
|
||||||
|
"py-3",
|
||||||
|
"py-5",
|
||||||
|
"py-md-1",
|
||||||
|
"ratio",
|
||||||
|
"ratio-16x9",
|
||||||
|
"rounded",
|
||||||
|
"rounded-2",
|
||||||
|
"rounded-5",
|
||||||
|
"rounded-bottom",
|
||||||
|
"rounded-pill",
|
||||||
|
"rounded-top",
|
||||||
|
"row",
|
||||||
|
"row-cols-1",
|
||||||
|
"row-cols-2",
|
||||||
|
"row-cols-lg-3",
|
||||||
|
"row-cols-md-2",
|
||||||
|
"row-cols-md-3",
|
||||||
|
"row-cols-sm-2",
|
||||||
|
"row-cols-sm-3",
|
||||||
|
"scrollbar-horizontal",
|
||||||
|
"search",
|
||||||
|
"search-input",
|
||||||
|
"search-suggestions",
|
||||||
|
"shadow",
|
||||||
|
"show",
|
||||||
|
"sidebar-overflow",
|
||||||
|
"slide",
|
||||||
|
"small",
|
||||||
|
"spinner-border",
|
||||||
|
"start-0",
|
||||||
|
"start-100",
|
||||||
|
"start-50",
|
||||||
|
"sticky-top",
|
||||||
|
"stretched-link",
|
||||||
|
"svg-inline--fa",
|
||||||
|
"syntax-highlight",
|
||||||
|
"tab-content",
|
||||||
|
"tab-pane",
|
||||||
|
"table",
|
||||||
|
"table-responsive",
|
||||||
|
"tag-link",
|
||||||
|
"text-bg-body",
|
||||||
|
"text-bg-body-tertiary",
|
||||||
|
"text-bg-info",
|
||||||
|
"text-bg-primary",
|
||||||
|
"text-bg-secondary",
|
||||||
|
"text-bg-success",
|
||||||
|
"text-bg-warning",
|
||||||
|
"text-body",
|
||||||
|
"text-body-secondary",
|
||||||
|
"text-break",
|
||||||
|
"text-center",
|
||||||
|
"text-decoration-none",
|
||||||
|
"text-end",
|
||||||
|
"text-info",
|
||||||
|
"text-muted",
|
||||||
|
"text-nowrap",
|
||||||
|
"text-right",
|
||||||
|
"text-secondary",
|
||||||
|
"text-sm-start",
|
||||||
|
"text-start",
|
||||||
|
"text-uppercase",
|
||||||
|
"tickmark",
|
||||||
|
"timeline",
|
||||||
|
"timeline-bg-dark",
|
||||||
|
"timeline-connector-end",
|
||||||
|
"timeline-connector-start",
|
||||||
|
"timeline-description-text-end",
|
||||||
|
"timeline-description-text-start",
|
||||||
|
"timeline-dot",
|
||||||
|
"timeline-info",
|
||||||
|
"timeline-panel-end",
|
||||||
|
"timeline-panel-start",
|
||||||
|
"timeline-primary",
|
||||||
|
"timeline-semi-circle-end",
|
||||||
|
"timeline-semi-circle-start",
|
||||||
|
"timeline-sm",
|
||||||
|
"timeline-success",
|
||||||
|
"timeline-warning",
|
||||||
|
"toast",
|
||||||
|
"toast-body",
|
||||||
|
"toast-container",
|
||||||
|
"toast-header",
|
||||||
|
"toc",
|
||||||
|
"toc-button",
|
||||||
|
"toc-panel",
|
||||||
|
"toc-sidebar",
|
||||||
|
"toggler-icon",
|
||||||
|
"top-0",
|
||||||
|
"top-25",
|
||||||
|
"top-50",
|
||||||
|
"top-bar",
|
||||||
|
"translate-middle",
|
||||||
|
"translate-middle-y",
|
||||||
|
"video-embedded",
|
||||||
|
"visually-hidden",
|
||||||
|
"vr",
|
||||||
|
"w-100",
|
||||||
|
"w-50"
|
||||||
|
],
|
||||||
|
"ids": [
|
||||||
|
"TableOfContents",
|
||||||
|
"abbr",
|
||||||
|
"accordion",
|
||||||
|
"accordion-0",
|
||||||
|
"accordion-0-heading-0",
|
||||||
|
"accordion-0-heading-1",
|
||||||
|
"accordion-0-heading-2",
|
||||||
|
"accordion-0-item-0",
|
||||||
|
"accordion-0-item-1",
|
||||||
|
"accordion-0-item-2",
|
||||||
|
"accordéon",
|
||||||
|
"alert",
|
||||||
|
"alerte",
|
||||||
|
"animation",
|
||||||
|
"badge",
|
||||||
|
"barre-de-navigation",
|
||||||
|
"blog",
|
||||||
|
"body-docs-collapse-15",
|
||||||
|
"body-file-collapse-1",
|
||||||
|
"bouton",
|
||||||
|
"breadcrumb",
|
||||||
|
"btn-webshare",
|
||||||
|
"button",
|
||||||
|
"button-group",
|
||||||
|
"card",
|
||||||
|
"card-group",
|
||||||
|
"carousel",
|
||||||
|
"carousel-0",
|
||||||
|
"carrousel",
|
||||||
|
"carte",
|
||||||
|
"chronologie",
|
||||||
|
"cloudinary",
|
||||||
|
"collapse",
|
||||||
|
"collapse-1",
|
||||||
|
"command-prompt",
|
||||||
|
"cookies-etc",
|
||||||
|
"custom-activity",
|
||||||
|
"data-tables",
|
||||||
|
"docs",
|
||||||
|
"documentation",
|
||||||
|
"example",
|
||||||
|
"exemple",
|
||||||
|
"fa-face-frown",
|
||||||
|
"fa-square-check",
|
||||||
|
"fab-bootstrap",
|
||||||
|
"fab-docker",
|
||||||
|
"fab-facebook",
|
||||||
|
"fab-github",
|
||||||
|
"fab-linkedin",
|
||||||
|
"fab-medium",
|
||||||
|
"fab-whatsapp",
|
||||||
|
"fab-x-twitter",
|
||||||
|
"fas-angle-left",
|
||||||
|
"fas-angle-right",
|
||||||
|
"fas-angles-left",
|
||||||
|
"fas-angles-right",
|
||||||
|
"fas-arrow-left",
|
||||||
|
"fas-arrow-right",
|
||||||
|
"fas-circle-check",
|
||||||
|
"fas-code",
|
||||||
|
"fas-ellipsis",
|
||||||
|
"fas-globe",
|
||||||
|
"fas-heart",
|
||||||
|
"fas-house",
|
||||||
|
"fas-link",
|
||||||
|
"fas-magnifying-glass",
|
||||||
|
"fas-moon",
|
||||||
|
"fas-rocket",
|
||||||
|
"fas-share-nodes",
|
||||||
|
"fas-sort",
|
||||||
|
"fas-sun",
|
||||||
|
"fas-up-right-from-square",
|
||||||
|
"fichier",
|
||||||
|
"fil-dariane",
|
||||||
|
"file",
|
||||||
|
"footer-docs-collapse-15",
|
||||||
|
"footer-file-collapse-1",
|
||||||
|
"formula-katex",
|
||||||
|
"formule-katex",
|
||||||
|
"groupe-de-boutons",
|
||||||
|
"groupe-de-cartes",
|
||||||
|
"how-do-we-use-cookies",
|
||||||
|
"how-we-share-your-information",
|
||||||
|
"icon",
|
||||||
|
"image",
|
||||||
|
"imagekitio",
|
||||||
|
"imgix",
|
||||||
|
"indicateur-de-chargement",
|
||||||
|
"infobulle",
|
||||||
|
"invite-de-commandes",
|
||||||
|
"language-selector",
|
||||||
|
"leaflet-map-0",
|
||||||
|
"lien",
|
||||||
|
"link",
|
||||||
|
"lottie-animation-0",
|
||||||
|
"manage-cookie-preferences",
|
||||||
|
"map",
|
||||||
|
"mark",
|
||||||
|
"nav",
|
||||||
|
"nav-0",
|
||||||
|
"nav-0-0",
|
||||||
|
"nav-0-1",
|
||||||
|
"nav-0-2",
|
||||||
|
"nav-0-btn-0",
|
||||||
|
"nav-0-btn-1",
|
||||||
|
"nav-0-btn-2",
|
||||||
|
"navbar",
|
||||||
|
"navbar-0-collapse",
|
||||||
|
"navbar-mode",
|
||||||
|
"navbar-mode-checkbox",
|
||||||
|
"navbar-sample-collapse",
|
||||||
|
"navigation",
|
||||||
|
"notification",
|
||||||
|
"persona",
|
||||||
|
"projecten",
|
||||||
|
"projects",
|
||||||
|
"projets",
|
||||||
|
"publication",
|
||||||
|
"release",
|
||||||
|
"réduire",
|
||||||
|
"security",
|
||||||
|
"spinner",
|
||||||
|
"sub",
|
||||||
|
"sup",
|
||||||
|
"table",
|
||||||
|
"third-party-links--use-of-your-information",
|
||||||
|
"timeline",
|
||||||
|
"toast",
|
||||||
|
"toast-container",
|
||||||
|
"toast-copied-code-message",
|
||||||
|
"toast-example-1",
|
||||||
|
"toast-example-2",
|
||||||
|
"toast-message-email-4",
|
||||||
|
"toc-collapse",
|
||||||
|
"tooltip",
|
||||||
|
"types-of-cookies-we-use",
|
||||||
|
"video",
|
||||||
|
"vimeo",
|
||||||
|
"what-are-cookies",
|
||||||
|
"your-rights",
|
||||||
|
"youtube"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
10
go.mod
10
go.mod
@@ -5,15 +5,15 @@ go 1.19
|
|||||||
require (
|
require (
|
||||||
github.com/airbnb/lottie-web v5.12.2+incompatible // indirect
|
github.com/airbnb/lottie-web v5.12.2+incompatible // indirect
|
||||||
github.com/gethinode/mod-bootstrap v1.3.1 // indirect
|
github.com/gethinode/mod-bootstrap v1.3.1 // indirect
|
||||||
github.com/gethinode/mod-csp v1.0.2 // indirect
|
github.com/gethinode/mod-csp v1.0.3 // indirect
|
||||||
github.com/gethinode/mod-flexsearch/v2 v2.0.1 // indirect
|
github.com/gethinode/mod-flexsearch/v2 v2.0.1 // indirect
|
||||||
github.com/gethinode/mod-fontawesome v1.10.0 // indirect
|
github.com/gethinode/mod-fontawesome v1.10.0 // indirect
|
||||||
github.com/gethinode/mod-google-analytics v1.1.2 // indirect
|
github.com/gethinode/mod-google-analytics v1.1.3 // indirect
|
||||||
github.com/gethinode/mod-katex v1.1.2 // indirect
|
github.com/gethinode/mod-katex v1.1.2 // indirect
|
||||||
github.com/gethinode/mod-leaflet v1.2.0 // indirect
|
github.com/gethinode/mod-leaflet v1.2.0 // indirect
|
||||||
github.com/gethinode/mod-lottie v1.5.10 // indirect
|
github.com/gethinode/mod-lottie v1.5.11 // indirect
|
||||||
github.com/gethinode/mod-simple-datatables v1.0.13 // indirect
|
github.com/gethinode/mod-simple-datatables v1.0.14 // indirect
|
||||||
github.com/gethinode/mod-utils/v2 v2.8.1 // indirect
|
github.com/gethinode/mod-utils/v2 v2.8.2 // indirect
|
||||||
github.com/nextapps-de/flexsearch v0.0.0-20240501124520-961c3ae84a87 // indirect
|
github.com/nextapps-de/flexsearch v0.0.0-20240501124520-961c3ae84a87 // indirect
|
||||||
github.com/twbs/bootstrap v5.3.3+incompatible // indirect
|
github.com/twbs/bootstrap v5.3.3+incompatible // indirect
|
||||||
)
|
)
|
||||||
|
10
go.sum
10
go.sum
@@ -30,6 +30,8 @@ github.com/gethinode/mod-csp v1.0.1 h1:IUUwPc41UNw7DAFuJ75nNPzhkPExenxXU7susdLax
|
|||||||
github.com/gethinode/mod-csp v1.0.1/go.mod h1:Nb22QMicoUHgZQUKP5TCgVrSI8K3KU7jLuLBShmotjg=
|
github.com/gethinode/mod-csp v1.0.1/go.mod h1:Nb22QMicoUHgZQUKP5TCgVrSI8K3KU7jLuLBShmotjg=
|
||||||
github.com/gethinode/mod-csp v1.0.2 h1:KX8EeoCGbHhGSo5r0YIa9BmPZ6S6v7L9CChTejREkK4=
|
github.com/gethinode/mod-csp v1.0.2 h1:KX8EeoCGbHhGSo5r0YIa9BmPZ6S6v7L9CChTejREkK4=
|
||||||
github.com/gethinode/mod-csp v1.0.2/go.mod h1:Nb22QMicoUHgZQUKP5TCgVrSI8K3KU7jLuLBShmotjg=
|
github.com/gethinode/mod-csp v1.0.2/go.mod h1:Nb22QMicoUHgZQUKP5TCgVrSI8K3KU7jLuLBShmotjg=
|
||||||
|
github.com/gethinode/mod-csp v1.0.3 h1:tRmnuVZ3UpCc9HR8qsAwbU0OJ/UsNVSbse0SZuwGcCg=
|
||||||
|
github.com/gethinode/mod-csp v1.0.3/go.mod h1:Nb22QMicoUHgZQUKP5TCgVrSI8K3KU7jLuLBShmotjg=
|
||||||
github.com/gethinode/mod-flexsearch v1.0.1 h1:FJkRsUzSnQTXl3MWCigT4E6vfff870UWTnkGqaDGIhA=
|
github.com/gethinode/mod-flexsearch v1.0.1 h1:FJkRsUzSnQTXl3MWCigT4E6vfff870UWTnkGqaDGIhA=
|
||||||
github.com/gethinode/mod-flexsearch v1.0.1/go.mod h1:TXbGbWsvmhBdsTzRt887mcpFfr4ORpzG3+h/l4W3YM4=
|
github.com/gethinode/mod-flexsearch v1.0.1/go.mod h1:TXbGbWsvmhBdsTzRt887mcpFfr4ORpzG3+h/l4W3YM4=
|
||||||
github.com/gethinode/mod-flexsearch v1.1.0 h1:7BCMyQDlYlskNXuazt8Jg/jg9WREexu2xVkYqThkAX4=
|
github.com/gethinode/mod-flexsearch v1.1.0 h1:7BCMyQDlYlskNXuazt8Jg/jg9WREexu2xVkYqThkAX4=
|
||||||
@@ -136,6 +138,8 @@ github.com/gethinode/mod-google-analytics v1.1.1 h1:XzMXd6nBDl5Lj1Q5pd8MWtE87FI/
|
|||||||
github.com/gethinode/mod-google-analytics v1.1.1/go.mod h1:dl628cFozpCvoIMCiV7ujzQipjxcm3eatXrSfLPWNII=
|
github.com/gethinode/mod-google-analytics v1.1.1/go.mod h1:dl628cFozpCvoIMCiV7ujzQipjxcm3eatXrSfLPWNII=
|
||||||
github.com/gethinode/mod-google-analytics v1.1.2 h1:mcoqaRRorut+PxYxJnOEMfKIlVIIOd6vxKhuEYTwFzw=
|
github.com/gethinode/mod-google-analytics v1.1.2 h1:mcoqaRRorut+PxYxJnOEMfKIlVIIOd6vxKhuEYTwFzw=
|
||||||
github.com/gethinode/mod-google-analytics v1.1.2/go.mod h1:dl628cFozpCvoIMCiV7ujzQipjxcm3eatXrSfLPWNII=
|
github.com/gethinode/mod-google-analytics v1.1.2/go.mod h1:dl628cFozpCvoIMCiV7ujzQipjxcm3eatXrSfLPWNII=
|
||||||
|
github.com/gethinode/mod-google-analytics v1.1.3 h1:24qxV5vKIex3zSdow+5r0o8rox1lrO31oGi0/XusBy4=
|
||||||
|
github.com/gethinode/mod-google-analytics v1.1.3/go.mod h1:dl628cFozpCvoIMCiV7ujzQipjxcm3eatXrSfLPWNII=
|
||||||
github.com/gethinode/mod-katex v1.0.0 h1:me/3dIIZBkfk1mRIFt8QiAGYwYDoSG5bc2hHRtIutFc=
|
github.com/gethinode/mod-katex v1.0.0 h1:me/3dIIZBkfk1mRIFt8QiAGYwYDoSG5bc2hHRtIutFc=
|
||||||
github.com/gethinode/mod-katex v1.0.0/go.mod h1:byAfpI3wuqNJIooTGVEGc1cjBhhCy4+CcK1H6495MYg=
|
github.com/gethinode/mod-katex v1.0.0/go.mod h1:byAfpI3wuqNJIooTGVEGc1cjBhhCy4+CcK1H6495MYg=
|
||||||
github.com/gethinode/mod-katex v1.0.1 h1:809QUztxmKgMNchU+v03iMO7Ma+ISc3ZzhXYauc21rs=
|
github.com/gethinode/mod-katex v1.0.1 h1:809QUztxmKgMNchU+v03iMO7Ma+ISc3ZzhXYauc21rs=
|
||||||
@@ -230,6 +234,8 @@ github.com/gethinode/mod-lottie v1.5.9 h1:1MFsq8pO7s4RXu1sA0z75xdp63FPdJ6ar9OhEi
|
|||||||
github.com/gethinode/mod-lottie v1.5.9/go.mod h1:TA1rPRwSilT5mXUakNSVlXNrgTpE87mUOB/fdunAdA0=
|
github.com/gethinode/mod-lottie v1.5.9/go.mod h1:TA1rPRwSilT5mXUakNSVlXNrgTpE87mUOB/fdunAdA0=
|
||||||
github.com/gethinode/mod-lottie v1.5.10 h1:tYFgk74T9zWy2FRkfkRI+8QVQy6lnuABnTeWQ8nUX5w=
|
github.com/gethinode/mod-lottie v1.5.10 h1:tYFgk74T9zWy2FRkfkRI+8QVQy6lnuABnTeWQ8nUX5w=
|
||||||
github.com/gethinode/mod-lottie v1.5.10/go.mod h1:L7NpvCAm04R59GSAAm/UFoDCs/6UtrIC5zQEjgQSr4k=
|
github.com/gethinode/mod-lottie v1.5.10/go.mod h1:L7NpvCAm04R59GSAAm/UFoDCs/6UtrIC5zQEjgQSr4k=
|
||||||
|
github.com/gethinode/mod-lottie v1.5.11 h1:xhxBPDS0iyUY+C1ANaD5EeQV7fO1FG0wMoCjgrCMi/0=
|
||||||
|
github.com/gethinode/mod-lottie v1.5.11/go.mod h1:6FKqk8c+Jkbk2udCxUKVLF1K1wrGwthPsOvRzeoPXRQ=
|
||||||
github.com/gethinode/mod-simple-datatables v1.0.0 h1:Dj4WGw12OkaimwkCpLn5Jhmd49dvNJW9O2P/W9F+HlQ=
|
github.com/gethinode/mod-simple-datatables v1.0.0 h1:Dj4WGw12OkaimwkCpLn5Jhmd49dvNJW9O2P/W9F+HlQ=
|
||||||
github.com/gethinode/mod-simple-datatables v1.0.0/go.mod h1:K8T7fIdb8pMOB+OSW4A5lz5IW99+HyzcTgx764fvOGw=
|
github.com/gethinode/mod-simple-datatables v1.0.0/go.mod h1:K8T7fIdb8pMOB+OSW4A5lz5IW99+HyzcTgx764fvOGw=
|
||||||
github.com/gethinode/mod-simple-datatables v1.0.2 h1:zhqxHet3iLQWYCBbGROALpOY9zQlptMycFkz1Tto5bA=
|
github.com/gethinode/mod-simple-datatables v1.0.2 h1:zhqxHet3iLQWYCBbGROALpOY9zQlptMycFkz1Tto5bA=
|
||||||
@@ -252,6 +258,8 @@ github.com/gethinode/mod-simple-datatables v1.0.12 h1:myyVp1ctQA6j+5UTWcDwQmy8ip
|
|||||||
github.com/gethinode/mod-simple-datatables v1.0.12/go.mod h1:QuH7wz1igohzCgL76xI1960mFxPPrqgvGtLwR/0cFyQ=
|
github.com/gethinode/mod-simple-datatables v1.0.12/go.mod h1:QuH7wz1igohzCgL76xI1960mFxPPrqgvGtLwR/0cFyQ=
|
||||||
github.com/gethinode/mod-simple-datatables v1.0.13 h1:3GTn46Zh56SFzCUP7CUSrmp/ZoiaVG19q4xdObSx6Pc=
|
github.com/gethinode/mod-simple-datatables v1.0.13 h1:3GTn46Zh56SFzCUP7CUSrmp/ZoiaVG19q4xdObSx6Pc=
|
||||||
github.com/gethinode/mod-simple-datatables v1.0.13/go.mod h1:a2qIdYegX5gBubGbspuHv/2UA/8O89oUG/U5hd7jLK8=
|
github.com/gethinode/mod-simple-datatables v1.0.13/go.mod h1:a2qIdYegX5gBubGbspuHv/2UA/8O89oUG/U5hd7jLK8=
|
||||||
|
github.com/gethinode/mod-simple-datatables v1.0.14 h1:332WtbaQtTm7VP0b7zYfpogTBcOEetkJrNd01K4d/JE=
|
||||||
|
github.com/gethinode/mod-simple-datatables v1.0.14/go.mod h1:mP3yjAdVE1G6JHfv8VVsRmvaPlPwddXknI675AuVs2I=
|
||||||
github.com/gethinode/mod-utils v1.0.0 h1:cqHm2xS5uDiJzRm1KfHaNbq6uMVDKLhQa8/BuTZ1nhY=
|
github.com/gethinode/mod-utils v1.0.0 h1:cqHm2xS5uDiJzRm1KfHaNbq6uMVDKLhQa8/BuTZ1nhY=
|
||||||
github.com/gethinode/mod-utils v1.0.0/go.mod h1:ONJm3pHCq7nvaPNjusLZNCeCbhOhSBH4HVKHwK1FdYE=
|
github.com/gethinode/mod-utils v1.0.0/go.mod h1:ONJm3pHCq7nvaPNjusLZNCeCbhOhSBH4HVKHwK1FdYE=
|
||||||
github.com/gethinode/mod-utils v1.0.1 h1:jhZGlGFHHL1f5HXbBMXfiZ2gCz4TVafAzjnRPTIBSEE=
|
github.com/gethinode/mod-utils v1.0.1 h1:jhZGlGFHHL1f5HXbBMXfiZ2gCz4TVafAzjnRPTIBSEE=
|
||||||
@@ -312,6 +320,8 @@ github.com/gethinode/mod-utils/v2 v2.8.0 h1:BdB+onItuO29g5ZLEz/HEwq9c4xBEM4GGqQc
|
|||||||
github.com/gethinode/mod-utils/v2 v2.8.0/go.mod h1:GTYeknoLujNjfDxI+V9Dcug26CYJSTJ0B/U2dagw9oY=
|
github.com/gethinode/mod-utils/v2 v2.8.0/go.mod h1:GTYeknoLujNjfDxI+V9Dcug26CYJSTJ0B/U2dagw9oY=
|
||||||
github.com/gethinode/mod-utils/v2 v2.8.1 h1:u7sFbgJ5sBEMYC/GwcMRyjRAd5NxTjBnbld5b0V5n98=
|
github.com/gethinode/mod-utils/v2 v2.8.1 h1:u7sFbgJ5sBEMYC/GwcMRyjRAd5NxTjBnbld5b0V5n98=
|
||||||
github.com/gethinode/mod-utils/v2 v2.8.1/go.mod h1:GTYeknoLujNjfDxI+V9Dcug26CYJSTJ0B/U2dagw9oY=
|
github.com/gethinode/mod-utils/v2 v2.8.1/go.mod h1:GTYeknoLujNjfDxI+V9Dcug26CYJSTJ0B/U2dagw9oY=
|
||||||
|
github.com/gethinode/mod-utils/v2 v2.8.2 h1:rKndAMmRBSO5Cgoa/2CvF5XchDSvLvd4TYAbfbbQVhE=
|
||||||
|
github.com/gethinode/mod-utils/v2 v2.8.2/go.mod h1:GTYeknoLujNjfDxI+V9Dcug26CYJSTJ0B/U2dagw9oY=
|
||||||
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=
|
||||||
|
@@ -52,11 +52,12 @@
|
|||||||
{{- $page := "" }}
|
{{- $page := "" }}
|
||||||
{{- if .path }}
|
{{- if .path }}
|
||||||
{{ $page = partial "utilities/GetPage.html" (dict "url" .path "page" page) }}
|
{{ $page = partial "utilities/GetPage.html" (dict "url" .path "page" page) }}
|
||||||
{{- if not $page }}
|
{{ $validate := site.Params.main.internalLinks.validate | default true }}
|
||||||
|
{{- if and $validate (not $page) }}
|
||||||
{{ if page.File }}
|
{{ if page.File }}
|
||||||
{{- errorf "partial [assets/card.html] - Cannot find target page '%s', see '%s'" .path page.File.Path -}}
|
{{- warnf "partial [assets/card.html] - Cannot find target page '%s', see '%s'" .path page.File.Path -}}
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{- errorf "partial [assets/card.html] - Cannot find target page '%s'" .path -}}
|
{{- warnf "partial [assets/card.html] - Cannot find target page '%s'" .path -}}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
@@ -95,7 +96,7 @@
|
|||||||
|
|
||||||
{{- if $href -}}
|
{{- if $href -}}
|
||||||
<a href="{{ $href }}" class="{{ if $color }}link-bg-{{ $color }}{{ else }}card-body-link{{ end }} stretched-link">
|
<a href="{{ $href }}" class="{{ if $color }}link-bg-{{ $color }}{{ else }}card-body-link{{ end }} stretched-link">
|
||||||
<p class="card-title fs-lg-5 fs-6 fw-bold">{{ $title }}</p>
|
<p class="card-title fs-lg-5 fs-6">{{ $title }}</p>
|
||||||
{{ with $description }}
|
{{ with $description }}
|
||||||
<div class="card-text {{ if $color }}link-bg-{{ $color }}{{ else }}card-body-link{{ end }}">
|
<div class="card-text {{ if $color }}link-bg-{{ $color }}{{ else }}card-body-link{{ end }}">
|
||||||
{{ . | safeHTML }}
|
{{ . | safeHTML }}
|
||||||
@@ -104,7 +105,7 @@
|
|||||||
</a>
|
</a>
|
||||||
{{- else -}}
|
{{- else -}}
|
||||||
<div>
|
<div>
|
||||||
{{ with $title }}<p class="card-title fs-lg-5 fs-6 fw-bold">{{ . }}</p>{{ end -}}
|
{{ with $title }}<p class="card-title fs-lg-5 fs-6">{{ . }}</p>{{ end -}}
|
||||||
{{ with $description }}<div class="card-text">{{ . | safeHTML }}</div>{{ end -}}
|
{{ with $description }}<div class="card-text">{{ . | safeHTML }}</div>{{ end -}}
|
||||||
</div>
|
</div>
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
@@ -58,7 +58,7 @@
|
|||||||
{{ partial "assets/button.html" (dict "toast" $target "clipboard" $clipboard "href" $url "icon" (printf "%s fa-fw" $item.icon) "class" "btn-social p-0" "label" (T "shareLink" $item.name) "spacing" false) }}
|
{{ partial "assets/button.html" (dict "toast" $target "clipboard" $clipboard "href" $url "icon" (printf "%s fa-fw" $item.icon) "class" "btn-social p-0" "label" (T "shareLink" $item.name) "spacing" false) }}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{ if $page.Site.Params.sharing.webshare }}
|
{{ if $page.Site.Params.sharing.webshare }}
|
||||||
{{ $attr := dict "data-sharing-title" .Title "data-sharing-description" .Description "data-sharing-url" .Permalink }}
|
{{ $attr := dict "data-sharing-title" $page.Title "data-sharing-description" $page.Description "data-sharing-url" $page.Permalink }}
|
||||||
{{ partial "assets/button.html" (dict "href" "#!" "icon" "fas share-nodes fa-fw" "id" "btn-webshare" "class" "btn-social p-0" "attributes" $attr "label" (T "shareLink" (T "shareSystem")) "spacing" false) }}
|
{{ partial "assets/button.html" (dict "href" "#!" "icon" "fas share-nodes fa-fw" "id" "btn-webshare" "class" "btn-social p-0" "attributes" $attr "label" (T "shareLink" (T "shareSystem")) "spacing" false) }}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{ with $download }}
|
{{ with $download }}
|
||||||
|
@@ -46,7 +46,7 @@
|
|||||||
{{ if eq .Kind "404" -}}
|
{{ if eq .Kind "404" -}}
|
||||||
<meta name="robots" content="noindex, follow">
|
<meta name="robots" content="noindex, follow">
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ with .Params.robots -}}
|
{{ with or .Params.robots .Params.meta.robots -}}
|
||||||
<meta name="robots" content="{{ . }}">
|
<meta name="robots" content="{{ . }}">
|
||||||
{{ else -}}
|
{{ else -}}
|
||||||
<meta name="robots" content="index, follow">
|
<meta name="robots" content="index, follow">
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
{{ with .module }}
|
{{ with .module }}
|
||||||
{{- $dependencies := page.Scratch.Get "dependencies" -}}
|
{{- $dependencies := page.Scratch.Get "dependencies" -}}
|
||||||
{{- if reflect.IsSlice $dependencies -}}
|
{{- if reflect.IsSlice $dependencies -}}
|
||||||
{{- $dependencies = complement $dependencies . -}}
|
{{- $dependencies = complement $dependencies (slice .) -}}
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{- $dependencies = slice . -}}
|
{{- $dependencies = slice . -}}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
28
netlify.toml
28
netlify.toml
@@ -39,17 +39,17 @@
|
|||||||
Access-Control-Allow-Origin = '*'
|
Access-Control-Allow-Origin = '*'
|
||||||
Content-Security-Policy = """
|
Content-Security-Policy = """
|
||||||
base-uri 'self'; \
|
base-uri 'self'; \
|
||||||
connect-src 'self' *.google-analytics.com *.analytics.google.com *.googletagmanager.com; \
|
connect-src 'self' *.cookieyes.com cdn-cookieyes.com *.google-analytics.com *.analytics.google.com *.googletagmanager.com; \
|
||||||
default-src 'none'; \
|
default-src 'none'; \
|
||||||
font-src 'self' fonts.gstatic.com; \
|
font-src 'self' fonts.gstatic.com; \
|
||||||
form-action 'self'; \
|
form-action 'self'; \
|
||||||
frame-src player.cloudinary.com player.vimeo.com www.youtube-nocookie.com www.youtube.com; \
|
frame-src player.cloudinary.com player.vimeo.com www.youtube-nocookie.com www.youtube.com; \
|
||||||
img-src 'self' *.google-analytics.com *.googletagmanager.com data: *.imgix.net *.imagekit.io *.cloudinary.com i.vimeocdn.com i.ytimg.com tile.openstreetmap.org; \
|
img-src 'self' cdn-cookieyes.com *.google-analytics.com *.googletagmanager.com data: *.imgix.net *.imagekit.io *.cloudinary.com i.vimeocdn.com i.ytimg.com tile.openstreetmap.org; \
|
||||||
manifest-src 'self'; \
|
manifest-src 'self'; \
|
||||||
media-src 'self'; \
|
media-src 'self'; \
|
||||||
object-src 'none'; \
|
object-src 'none'; \
|
||||||
script-src 'self' *.google-analytics.com *.googletagmanager.com; \
|
script-src 'self' cdn-cookieyes.com *.google-analytics.com *.googletagmanager.com; \
|
||||||
style-src 'self' www.youtube.com; \
|
style-src 'self' 'unsafe-inline' www.youtube.com; \
|
||||||
"""
|
"""
|
||||||
Permissions-Policy = 'geolocation=(), midi=(), sync-xhr=(), microphone=(), camera=(), magnetometer=(), gyroscope=(), fullscreen=(), payment=() '
|
Permissions-Policy = 'geolocation=(), midi=(), sync-xhr=(), microphone=(), camera=(), magnetometer=(), gyroscope=(), fullscreen=(), payment=() '
|
||||||
Referrer-Policy = 'strict-origin'
|
Referrer-Policy = 'strict-origin'
|
||||||
@@ -59,3 +59,23 @@
|
|||||||
X-XSS-Protection = '1; mode=block'
|
X-XSS-Protection = '1; mode=block'
|
||||||
cache-control = 'max-age=0, no-cache, no-store, must-revalidate '
|
cache-control = 'max-age=0, no-cache, no-store, must-revalidate '
|
||||||
|
|
||||||
|
[[redirects]]
|
||||||
|
from = '/fr/*'
|
||||||
|
status = 404
|
||||||
|
to = '/fr/404.html'
|
||||||
|
|
||||||
|
[[redirects]]
|
||||||
|
from = '/nl/*'
|
||||||
|
status = 404
|
||||||
|
to = '/nl/404.html'
|
||||||
|
|
||||||
|
[[redirects]]
|
||||||
|
from = '/en/*'
|
||||||
|
status = 404
|
||||||
|
to = '/en/404.html'
|
||||||
|
|
||||||
|
[[redirects]]
|
||||||
|
from = '/*'
|
||||||
|
status = 404
|
||||||
|
to = '/en/404.html'
|
||||||
|
|
||||||
|
153
package-lock.json
generated
153
package-lock.json
generated
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
"name": "@gethinode/hinode",
|
"name": "@gethinode/hinode",
|
||||||
"version": "0.27.0-beta4",
|
"version": "0.27.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@gethinode/hinode",
|
"name": "@gethinode/hinode",
|
||||||
"version": "0.27.0-beta4",
|
"version": "0.27.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fullhuman/postcss-purgecss": "^6.0.0",
|
"@fullhuman/postcss-purgecss": "^6.0.0",
|
||||||
"autoprefixer": "^10.4.20",
|
"autoprefixer": "^10.4.20",
|
||||||
"cssnano": "^7.0.6",
|
"cssnano": "^7.0.6",
|
||||||
"cssnano-preset-advanced": "^7.0.6",
|
"cssnano-preset-advanced": "^7.0.6",
|
||||||
"hugo-bin": "0.132.0",
|
"hugo-bin": "0.133.2",
|
||||||
"purgecss-whitelister": "^2.4.0"
|
"purgecss-whitelister": "^2.4.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
@@ -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.3.4",
|
"shx": "^0.3.4",
|
||||||
"stylelint": "^16.9.0",
|
"stylelint": "^16.10.0",
|
||||||
"stylelint-config-standard-scss": "^13.1.0"
|
"stylelint-config-standard-scss": "^13.1.0"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
@@ -1961,9 +1961,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/css-functions-list": {
|
"node_modules/css-functions-list": {
|
||||||
"version": "3.2.2",
|
"version": "3.2.3",
|
||||||
"resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.2.tgz",
|
"resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.3.tgz",
|
||||||
"integrity": "sha512-c+N0v6wbKVxTu5gOBBFkr9BEdBWaqqjQeiJ8QvSRIJOf+UxlJh930m8e6/WNeODIK0mYLFkoONrnj16i2EcvfQ==",
|
"integrity": "sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12 || >=16"
|
"node": ">=12 || >=16"
|
||||||
@@ -2193,12 +2193,12 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/debug": {
|
"node_modules/debug": {
|
||||||
"version": "4.3.6",
|
"version": "4.3.7",
|
||||||
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz",
|
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
|
||||||
"integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==",
|
"integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"ms": "2.1.2"
|
"ms": "^2.1.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.0"
|
"node": ">=6.0"
|
||||||
@@ -3855,9 +3855,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/hugo-bin": {
|
"node_modules/hugo-bin": {
|
||||||
"version": "0.132.0",
|
"version": "0.133.2",
|
||||||
"resolved": "https://registry.npmjs.org/hugo-bin/-/hugo-bin-0.132.0.tgz",
|
"resolved": "https://registry.npmjs.org/hugo-bin/-/hugo-bin-0.133.2.tgz",
|
||||||
"integrity": "sha512-P8Bjl2ussOFzDJVppZfjxuyRegklKnlz2ILeFUszwkq9aDab8il0IJgr6pNxI0bbPIbLcoV64FmStyB1vXsynQ==",
|
"integrity": "sha512-qh7b+2/9fGNYAn6ISV2qBXRf7HmlYQlQozJ7ZZd1P6R7e83s4X/Pulg8oKrsdE+7qC4uNC7iHdn0a/5LmZYfrw==",
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
"type": "github",
|
"type": "github",
|
||||||
@@ -4890,9 +4890,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/ms": {
|
"node_modules/ms": {
|
||||||
"version": "2.1.2",
|
"version": "2.1.3",
|
||||||
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
||||||
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
|
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/nanoid": {
|
"node_modules/nanoid": {
|
||||||
@@ -5614,9 +5614,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/picocolors": {
|
"node_modules/picocolors": {
|
||||||
"version": "1.0.1",
|
"version": "1.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz",
|
||||||
"integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew=="
|
"integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw=="
|
||||||
},
|
},
|
||||||
"node_modules/picomatch": {
|
"node_modules/picomatch": {
|
||||||
"version": "2.3.1",
|
"version": "2.3.1",
|
||||||
@@ -5661,9 +5661,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/postcss": {
|
"node_modules/postcss": {
|
||||||
"version": "8.4.41",
|
"version": "8.4.47",
|
||||||
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.41.tgz",
|
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz",
|
||||||
"integrity": "sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==",
|
"integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==",
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
"type": "opencollective",
|
"type": "opencollective",
|
||||||
@@ -5680,8 +5680,8 @@
|
|||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"nanoid": "^3.3.7",
|
"nanoid": "^3.3.7",
|
||||||
"picocolors": "^1.0.1",
|
"picocolors": "^1.1.0",
|
||||||
"source-map-js": "^1.2.0"
|
"source-map-js": "^1.2.1"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^10 || ^12 || >=14"
|
"node": "^10 || ^12 || >=14"
|
||||||
@@ -6194,9 +6194,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/postcss-safe-parser": {
|
"node_modules/postcss-safe-parser": {
|
||||||
"version": "7.0.0",
|
"version": "7.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-7.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-7.0.1.tgz",
|
||||||
"integrity": "sha512-ovehqRNVCpuFzbXoTb4qLtyzK3xn3t/CUBxOs8LsnQjQrShaB4lKiHoVqY8ANaC0hBMHq5QVWk77rwGklFUDrg==",
|
"integrity": "sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -7158,9 +7158,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/source-map-js": {
|
"node_modules/source-map-js": {
|
||||||
"version": "1.2.0",
|
"version": "1.2.1",
|
||||||
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz",
|
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
||||||
"integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==",
|
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=0.10.0"
|
"node": ">=0.10.0"
|
||||||
}
|
}
|
||||||
@@ -7458,9 +7458,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/stylelint": {
|
"node_modules/stylelint": {
|
||||||
"version": "16.9.0",
|
"version": "16.10.0",
|
||||||
"resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.9.0.tgz",
|
"resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.10.0.tgz",
|
||||||
"integrity": "sha512-31Nm3WjxGOBGpQqF43o3wO9L5AC36TPIe6030Lnm13H3vDMTcS21DrLh69bMX+DBilKqMMVLian4iG6ybBoNRQ==",
|
"integrity": "sha512-z/8X2rZ52dt2c0stVwI9QL2AFJhLhbPkyfpDFcizs200V/g7v+UYY6SNcB9hKOLcDDX/yGLDsY/pX08sLkz9xQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -7481,17 +7481,17 @@
|
|||||||
"balanced-match": "^2.0.0",
|
"balanced-match": "^2.0.0",
|
||||||
"colord": "^2.9.3",
|
"colord": "^2.9.3",
|
||||||
"cosmiconfig": "^9.0.0",
|
"cosmiconfig": "^9.0.0",
|
||||||
"css-functions-list": "^3.2.2",
|
"css-functions-list": "^3.2.3",
|
||||||
"css-tree": "^2.3.1",
|
"css-tree": "^3.0.0",
|
||||||
"debug": "^4.3.6",
|
"debug": "^4.3.7",
|
||||||
"fast-glob": "^3.3.2",
|
"fast-glob": "^3.3.2",
|
||||||
"fastest-levenshtein": "^1.0.16",
|
"fastest-levenshtein": "^1.0.16",
|
||||||
"file-entry-cache": "^9.0.0",
|
"file-entry-cache": "^9.1.0",
|
||||||
"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": "^5.3.2",
|
"ignore": "^6.0.2",
|
||||||
"imurmurhash": "^0.1.4",
|
"imurmurhash": "^0.1.4",
|
||||||
"is-plain-object": "^5.0.0",
|
"is-plain-object": "^5.0.0",
|
||||||
"known-css-properties": "^0.34.0",
|
"known-css-properties": "^0.34.0",
|
||||||
@@ -7500,14 +7500,13 @@
|
|||||||
"micromatch": "^4.0.8",
|
"micromatch": "^4.0.8",
|
||||||
"normalize-path": "^3.0.0",
|
"normalize-path": "^3.0.0",
|
||||||
"picocolors": "^1.0.1",
|
"picocolors": "^1.0.1",
|
||||||
"postcss": "^8.4.41",
|
"postcss": "^8.4.47",
|
||||||
"postcss-resolve-nested-selector": "^0.1.6",
|
"postcss-resolve-nested-selector": "^0.1.6",
|
||||||
"postcss-safe-parser": "^7.0.0",
|
"postcss-safe-parser": "^7.0.1",
|
||||||
"postcss-selector-parser": "^6.1.2",
|
"postcss-selector-parser": "^6.1.2",
|
||||||
"postcss-value-parser": "^4.2.0",
|
"postcss-value-parser": "^4.2.0",
|
||||||
"resolve-from": "^5.0.0",
|
"resolve-from": "^5.0.0",
|
||||||
"string-width": "^4.2.3",
|
"string-width": "^4.2.3",
|
||||||
"strip-ansi": "^7.1.0",
|
|
||||||
"supports-hyperlinks": "^3.1.0",
|
"supports-hyperlinks": "^3.1.0",
|
||||||
"svg-tags": "^1.0.0",
|
"svg-tags": "^1.0.0",
|
||||||
"table": "^6.8.2",
|
"table": "^6.8.2",
|
||||||
@@ -7611,18 +7610,6 @@
|
|||||||
"stylelint": "^16.0.2"
|
"stylelint": "^16.0.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/stylelint/node_modules/ansi-regex": {
|
|
||||||
"version": "6.0.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
|
|
||||||
"integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
|
|
||||||
"dev": true,
|
|
||||||
"engines": {
|
|
||||||
"node": ">=12"
|
|
||||||
},
|
|
||||||
"funding": {
|
|
||||||
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/stylelint/node_modules/array-union": {
|
"node_modules/stylelint/node_modules/array-union": {
|
||||||
"version": "2.1.0",
|
"version": "2.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
|
||||||
@@ -7638,10 +7625,23 @@
|
|||||||
"integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==",
|
"integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
|
"node_modules/stylelint/node_modules/css-tree": {
|
||||||
|
"version": "3.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.0.0.tgz",
|
||||||
|
"integrity": "sha512-o88DVQ6GzsABn1+6+zo2ct801dBO5OASVyxbbvA2W20ue2puSh/VOuqUj90eUeMSX/xqGqBmOKiRQN7tJOuBXw==",
|
||||||
|
"dev": true,
|
||||||
|
"dependencies": {
|
||||||
|
"mdn-data": "2.10.0",
|
||||||
|
"source-map-js": "^1.0.1"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/stylelint/node_modules/file-entry-cache": {
|
"node_modules/stylelint/node_modules/file-entry-cache": {
|
||||||
"version": "9.0.0",
|
"version": "9.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-9.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-9.1.0.tgz",
|
||||||
"integrity": "sha512-6MgEugi8p2tiUhqO7GnPsmbCCzj0YRCwwaTbpGRyKZesjRSzkqkAE9fPp7V2yMs5hwfgbQLgdvSSkGNg1s5Uvw==",
|
"integrity": "sha512-/pqPFG+FdxWQj+/WSuzXSDaNzxgTLr/OrR1QuqfEZzDakpdYE70PwUxL7BPUa8hpjbvY1+qvCl8k+8Tq34xJgg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"flat-cache": "^5.0.0"
|
"flat-cache": "^5.0.0"
|
||||||
@@ -7683,12 +7683,36 @@
|
|||||||
"url": "https://github.com/sponsors/sindresorhus"
|
"url": "https://github.com/sponsors/sindresorhus"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/stylelint/node_modules/globby/node_modules/ignore": {
|
||||||
|
"version": "5.3.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
|
||||||
|
"integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
|
||||||
|
"dev": true,
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 4"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/stylelint/node_modules/ignore": {
|
||||||
|
"version": "6.0.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/ignore/-/ignore-6.0.2.tgz",
|
||||||
|
"integrity": "sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A==",
|
||||||
|
"dev": true,
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 4"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/stylelint/node_modules/known-css-properties": {
|
"node_modules/stylelint/node_modules/known-css-properties": {
|
||||||
"version": "0.34.0",
|
"version": "0.34.0",
|
||||||
"resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.34.0.tgz",
|
"resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.34.0.tgz",
|
||||||
"integrity": "sha512-tBECoUqNFbyAY4RrbqsBQqDFpGXAEbdD5QKr8kACx3+rnArmuuR22nKQWKazvp07N9yjTyDZaw/20UIH8tL9DQ==",
|
"integrity": "sha512-tBECoUqNFbyAY4RrbqsBQqDFpGXAEbdD5QKr8kACx3+rnArmuuR22nKQWKazvp07N9yjTyDZaw/20UIH8tL9DQ==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
|
"node_modules/stylelint/node_modules/mdn-data": {
|
||||||
|
"version": "2.10.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.10.0.tgz",
|
||||||
|
"integrity": "sha512-qq7C3EtK3yJXMwz1zAab65pjl+UhohqMOctTgcqjLOWABqmwj+me02LSsCuEUxnst9X1lCBpoE0WArGKgdGDzw==",
|
||||||
|
"dev": true
|
||||||
|
},
|
||||||
"node_modules/stylelint/node_modules/resolve-from": {
|
"node_modules/stylelint/node_modules/resolve-from": {
|
||||||
"version": "5.0.0",
|
"version": "5.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
|
||||||
@@ -7707,21 +7731,6 @@
|
|||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/stylelint/node_modules/strip-ansi": {
|
|
||||||
"version": "7.1.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
|
|
||||||
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
|
|
||||||
"dev": true,
|
|
||||||
"dependencies": {
|
|
||||||
"ansi-regex": "^6.0.1"
|
|
||||||
},
|
|
||||||
"engines": {
|
|
||||||
"node": ">=12"
|
|
||||||
},
|
|
||||||
"funding": {
|
|
||||||
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/supports-color": {
|
"node_modules/supports-color": {
|
||||||
"version": "7.2.0",
|
"version": "7.2.0",
|
||||||
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@gethinode/hinode",
|
"name": "@gethinode/hinode",
|
||||||
"version": "0.27.0-beta4",
|
"version": "0.27.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",
|
||||||
@@ -38,7 +38,7 @@
|
|||||||
"lint:styles": "stylelint \"assets/scss/**/*.{css,sass,scss,sss,less}\" --allow-empty-input",
|
"lint:styles": "stylelint \"assets/scss/**/*.{css,sass,scss,sss,less}\" --allow-empty-input",
|
||||||
"lint:markdown": "markdownlint-cli2 \"*.md\" \"content/**/*.md\" \"exampleSite/**/*.md\"",
|
"lint:markdown": "markdownlint-cli2 \"*.md\" \"content/**/*.md\" \"exampleSite/**/*.md\"",
|
||||||
"mod:clean": "hugo mod clean",
|
"mod:clean": "hugo mod clean",
|
||||||
"mod:update": "rimraf _vendor && hugo mod get && npm run -s mod:vendor && npm run -s mod:tidy",
|
"mod:update": "rimraf _vendor && hugo mod get -u ./... && npm run -s mod:vendor && npm run -s mod:tidy",
|
||||||
"mod:tidy": "hugo mod tidy && hugo mod tidy -s exampleSite",
|
"mod:tidy": "hugo mod tidy && hugo mod tidy -s exampleSite",
|
||||||
"mod:vendor": "rimraf _vendor && hugo mod vendor",
|
"mod:vendor": "rimraf _vendor && hugo mod vendor",
|
||||||
"test": "npm run -s lint",
|
"test": "npm run -s lint",
|
||||||
@@ -73,7 +73,7 @@
|
|||||||
"autoprefixer": "^10.4.20",
|
"autoprefixer": "^10.4.20",
|
||||||
"cssnano": "^7.0.6",
|
"cssnano": "^7.0.6",
|
||||||
"cssnano-preset-advanced": "^7.0.6",
|
"cssnano-preset-advanced": "^7.0.6",
|
||||||
"hugo-bin": "0.132.0",
|
"hugo-bin": "0.133.2",
|
||||||
"purgecss-whitelister": "^2.4.0"
|
"purgecss-whitelister": "^2.4.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
@@ -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.3.4",
|
"shx": "^0.3.4",
|
||||||
"stylelint": "^16.9.0",
|
"stylelint": "^16.10.0",
|
||||||
"stylelint-config-standard-scss": "^13.1.0"
|
"stylelint-config-standard-scss": "^13.1.0"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
|
Reference in New Issue
Block a user