mirror of
https://github.com/gethinode/hinode.git
synced 2025-10-16 06:23:11 +00:00
Compare commits
25 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 |
@@ -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)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -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',
|
||||||
|
@@ -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.2.1 // indirect
|
github.com/gethinode/mod-cookieyes/v2 v2.2.2 // indirect
|
||||||
)
|
)
|
||||||
|
@@ -1,2 +1,2 @@
|
|||||||
github.com/gethinode/mod-cookieyes/v2 v2.2.1 h1:IIHsUu2g/W9rrloW1kBajijNwgQnic2kAGV6705LW0s=
|
github.com/gethinode/mod-cookieyes/v2 v2.2.2 h1:VNIdbZnzXw/0Jito/IcDNqQ9yRYLCGrDwyrMqtSJgE4=
|
||||||
github.com/gethinode/mod-cookieyes/v2 v2.2.1/go.mod h1:tULb7D7CoTycGUyL7ryqHJKaX11XuL2SN+XwP7/DI0Y=
|
github.com/gethinode/mod-cookieyes/v2 v2.2.2/go.mod h1:tULb7D7CoTycGUyL7ryqHJKaX11XuL2SN+XwP7/DI0Y=
|
||||||
|
6
go.mod
6
go.mod
@@ -5,14 +5,14 @@ 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.11 // 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.2 // 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
|
||||||
|
6
go.sum
6
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=
|
||||||
@@ -254,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=
|
||||||
|
190
hugo_stats.json
190
hugo_stats.json
@@ -1,7 +1,191 @@
|
|||||||
{
|
{
|
||||||
"htmlElements": {
|
"htmlElements": {
|
||||||
"tags": null,
|
"tags": [
|
||||||
"classes": null,
|
"a",
|
||||||
"ids": null
|
"body",
|
||||||
|
"button",
|
||||||
|
"div",
|
||||||
|
"footer",
|
||||||
|
"form",
|
||||||
|
"head",
|
||||||
|
"html",
|
||||||
|
"img",
|
||||||
|
"input",
|
||||||
|
"label",
|
||||||
|
"li",
|
||||||
|
"link",
|
||||||
|
"meta",
|
||||||
|
"nav",
|
||||||
|
"ol",
|
||||||
|
"p",
|
||||||
|
"path",
|
||||||
|
"script",
|
||||||
|
"small",
|
||||||
|
"span",
|
||||||
|
"strong",
|
||||||
|
"svg",
|
||||||
|
"symbol",
|
||||||
|
"title",
|
||||||
|
"ul",
|
||||||
|
"use"
|
||||||
|
],
|
||||||
|
"classes": [
|
||||||
|
"active",
|
||||||
|
"align-items-center",
|
||||||
|
"align-self-center",
|
||||||
|
"align-self-end",
|
||||||
|
"ball",
|
||||||
|
"bg-body",
|
||||||
|
"bg-opacity-10",
|
||||||
|
"bg-primary",
|
||||||
|
"bottom-0",
|
||||||
|
"bottom-bar",
|
||||||
|
"breadcrumb",
|
||||||
|
"breadcrumb-item",
|
||||||
|
"btn",
|
||||||
|
"btn-close",
|
||||||
|
"btn-primary",
|
||||||
|
"checkbox",
|
||||||
|
"col",
|
||||||
|
"col-12",
|
||||||
|
"col-6",
|
||||||
|
"col-md-2",
|
||||||
|
"col-md-3",
|
||||||
|
"col-md-4",
|
||||||
|
"col-md-8",
|
||||||
|
"col-md-9",
|
||||||
|
"col-sm-12",
|
||||||
|
"collapse",
|
||||||
|
"collapsed",
|
||||||
|
"container-fluid",
|
||||||
|
"container-xxl",
|
||||||
|
"d-flex",
|
||||||
|
"d-inline",
|
||||||
|
"d-md-block",
|
||||||
|
"d-none",
|
||||||
|
"display-1",
|
||||||
|
"display-4",
|
||||||
|
"emphasis",
|
||||||
|
"end-0",
|
||||||
|
"fa",
|
||||||
|
"fa-10x",
|
||||||
|
"fa-2x",
|
||||||
|
"fa-book-open",
|
||||||
|
"fa-ellipsis",
|
||||||
|
"fa-face-frown",
|
||||||
|
"fa-fw",
|
||||||
|
"fa-github",
|
||||||
|
"fa-linkedin",
|
||||||
|
"fa-medium",
|
||||||
|
"fa-moon",
|
||||||
|
"fa-sun",
|
||||||
|
"fab",
|
||||||
|
"fas",
|
||||||
|
"fixed-top",
|
||||||
|
"flex-column",
|
||||||
|
"flex-fill",
|
||||||
|
"footer",
|
||||||
|
"form-control",
|
||||||
|
"fs-3",
|
||||||
|
"fs-5",
|
||||||
|
"fw-30",
|
||||||
|
"fw-bold",
|
||||||
|
"hstack",
|
||||||
|
"img-fluid",
|
||||||
|
"img-wrap",
|
||||||
|
"invisible",
|
||||||
|
"is-search",
|
||||||
|
"justify-content-center",
|
||||||
|
"justify-content-end",
|
||||||
|
"justify-content-start",
|
||||||
|
"label",
|
||||||
|
"link-bg-footer",
|
||||||
|
"link-secondary",
|
||||||
|
"main-content",
|
||||||
|
"main-nav-toggler",
|
||||||
|
"me-auto",
|
||||||
|
"middle-bar",
|
||||||
|
"min-vh-100",
|
||||||
|
"mode-switch",
|
||||||
|
"ms-auto",
|
||||||
|
"ms-md-3",
|
||||||
|
"mt-3",
|
||||||
|
"mt-4",
|
||||||
|
"mt-5",
|
||||||
|
"mt-md-0",
|
||||||
|
"mx-auto",
|
||||||
|
"mx-md-0",
|
||||||
|
"my-auto",
|
||||||
|
"my-md-auto",
|
||||||
|
"nav-item",
|
||||||
|
"nav-link",
|
||||||
|
"navbar",
|
||||||
|
"navbar-brand",
|
||||||
|
"navbar-collapse",
|
||||||
|
"navbar-container",
|
||||||
|
"navbar-expand-md",
|
||||||
|
"navbar-fixed-top",
|
||||||
|
"navbar-mode-selector",
|
||||||
|
"navbar-nav",
|
||||||
|
"navbar-toggler",
|
||||||
|
"no-js",
|
||||||
|
"order-0",
|
||||||
|
"order-1",
|
||||||
|
"order-md-0",
|
||||||
|
"order-md-1",
|
||||||
|
"p-0",
|
||||||
|
"p-2",
|
||||||
|
"p-3",
|
||||||
|
"p-4",
|
||||||
|
"pb-4",
|
||||||
|
"pb-md-0",
|
||||||
|
"position-fixed",
|
||||||
|
"position-relative",
|
||||||
|
"ps-1",
|
||||||
|
"pt-4",
|
||||||
|
"pt-5",
|
||||||
|
"pt-md-3",
|
||||||
|
"px-4",
|
||||||
|
"px-xxl-0",
|
||||||
|
"py-3",
|
||||||
|
"rounded",
|
||||||
|
"row",
|
||||||
|
"row-cols-1",
|
||||||
|
"row-cols-2",
|
||||||
|
"row-cols-md-2",
|
||||||
|
"row-cols-sm-3",
|
||||||
|
"search",
|
||||||
|
"search-input",
|
||||||
|
"search-suggestions",
|
||||||
|
"shadow",
|
||||||
|
"svg-inline--fa",
|
||||||
|
"text-center",
|
||||||
|
"text-decoration-none",
|
||||||
|
"text-muted",
|
||||||
|
"text-secondary",
|
||||||
|
"text-sm-start",
|
||||||
|
"text-start",
|
||||||
|
"toast",
|
||||||
|
"toast-body",
|
||||||
|
"toast-container",
|
||||||
|
"toast-header",
|
||||||
|
"toggler-icon",
|
||||||
|
"top-bar"
|
||||||
|
],
|
||||||
|
"ids": [
|
||||||
|
"fa-face-frown",
|
||||||
|
"fab-github",
|
||||||
|
"fab-linkedin",
|
||||||
|
"fab-medium",
|
||||||
|
"fas-book-open",
|
||||||
|
"fas-ellipsis",
|
||||||
|
"fas-moon",
|
||||||
|
"fas-sun",
|
||||||
|
"navbar-0-collapse",
|
||||||
|
"navbar-mode",
|
||||||
|
"navbar-mode-checkbox",
|
||||||
|
"toast-container",
|
||||||
|
"toast-copied-code-message"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -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 }}
|
||||||
|
12
package-lock.json
generated
12
package-lock.json
generated
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
"name": "@gethinode/hinode",
|
"name": "@gethinode/hinode",
|
||||||
"version": "0.27.0-beta6",
|
"version": "0.27.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@gethinode/hinode",
|
"name": "@gethinode/hinode",
|
||||||
"version": "0.27.0-beta6",
|
"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.133.1",
|
"hugo-bin": "0.133.2",
|
||||||
"purgecss-whitelister": "^2.4.0"
|
"purgecss-whitelister": "^2.4.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
@@ -3855,9 +3855,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/hugo-bin": {
|
"node_modules/hugo-bin": {
|
||||||
"version": "0.133.1",
|
"version": "0.133.2",
|
||||||
"resolved": "https://registry.npmjs.org/hugo-bin/-/hugo-bin-0.133.1.tgz",
|
"resolved": "https://registry.npmjs.org/hugo-bin/-/hugo-bin-0.133.2.tgz",
|
||||||
"integrity": "sha512-/ogXytJEdTzUBoPIDhzhCJ5dv13C0fXmKbsr3lEb1bo2YlsYE/9+bhPXC21MDiC6wYlVLbuMX8U0eSERR/R8uA==",
|
"integrity": "sha512-qh7b+2/9fGNYAn6ISV2qBXRf7HmlYQlQozJ7ZZd1P6R7e83s4X/Pulg8oKrsdE+7qC4uNC7iHdn0a/5LmZYfrw==",
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
"type": "github",
|
"type": "github",
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@gethinode/hinode",
|
"name": "@gethinode/hinode",
|
||||||
"version": "0.27.0-beta6",
|
"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",
|
||||||
@@ -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.133.1",
|
"hugo-bin": "0.133.2",
|
||||||
"purgecss-whitelister": "^2.4.0"
|
"purgecss-whitelister": "^2.4.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
Reference in New Issue
Block a user