Skip to content

Commit 9425b4a

Browse files
author
David G. Simmons
committed
WIP skip actions
1 parent 45a7bca commit 9425b4a

File tree

9 files changed

+295
-27
lines changed

9 files changed

+295
-27
lines changed

config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ module:
181181
imports:
182182
# - path: github.com/hugo-toha/toha/v4
183183
- path: github.com/hugo-toha/toha/v4
184+
- path: github.com/hugomods/code-block-panel
184185
mounts:
185186
- source: static/files
186187
target: static/files
267 KB
Loading
19.5 KB
Loading

content/posts/category/open-source/a-fresh-ui-for-docling/index.en.md

Lines changed: 274 additions & 3 deletions
Large diffs are not rendered by default.

go.mod

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@ module github.com/davidgs/DavidgsWeb
22

33
go 1.25.5
44

5-
require github.com/hugo-toha/toha/v4 v4.13.0 // indirect
5+
require (
6+
github.com/hugo-toha/toha/v4 v4.13.0 // indirect
7+
github.com/hugomods/code-block-panel v0.9.0 // indirect
8+
)

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
github.com/hugo-toha/toha/v4 v4.12.0 h1:mA1fC+W3tT3jbK2J3IQ+Wmbgd+ZfCOzoihsaNm+5vcU=
2-
github.com/hugo-toha/toha/v4 v4.12.0/go.mod h1:TU/6WXz7fJ3BSrTS+K/sVctzUMF4pB4ZwKWzFBFra8g=
31
github.com/hugo-toha/toha/v4 v4.13.0 h1:h6ZKpqSZIcNK8ufptcRbg+Bm63tBq7v+X2jCC1mlcwg=
42
github.com/hugo-toha/toha/v4 v4.13.0/go.mod h1:TU/6WXz7fJ3BSrTS+K/sVctzUMF4pB4ZwKWzFBFra8g=
3+
github.com/hugomods/code-block-panel v0.9.0 h1:rIyoZQRsW7OCprinbZ93mC8D7x/UdciHmedb/JMIeKM=
4+
github.com/hugomods/code-block-panel v0.9.0/go.mod h1:3J9yUxaShbhYvFFZbGVHcBoHPl6TUKLL3f2fTsnVNNg=

layouts/partials/analytics.html

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@
33
{{ if or .enable .enabled }}
44

55
{{ with .services }}
6-
{{ $url := absURL "" }}
7-
{{ $pUrl := urls.Parse $url }}
8-
{{ $hName := $pUrl.Host }}
9-
{{ if and $hName ( ne $hName "localhost") }}
6+
{{ if and hugo.IsProduction (or .enable .enabled)}}
107
<!-- Google Analytics -->
118
{{ with .google }}
129
<!-- Google tag (gtag.js) -->

package-lock.json

Lines changed: 8 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"devDependencies": {
77
"@fontsource/mulish": "project",
88
"@fortawesome/fontawesome-free": "project",
9+
"@popperjs/core": "project",
910
"autoprefixer": "project",
1011
"bootstrap": "project",
1112
"eslint": "project",
@@ -24,20 +25,19 @@
2425
"imagesloaded": "project",
2526
"include-media": "project",
2627
"ityped": "project",
27-
"typeit": "project",
2828
"katex": "project",
2929
"mark.js": "project",
3030
"mermaid": "project",
3131
"plyr": "project",
32-
"popper.js": "project",
33-
"@popperjs/core": "project",
32+
"popper.js": "github.com/hugo-toha/toha/v4",
3433
"postcss": "project",
3534
"postcss-cli": "project",
36-
"posthog-js": "project"
35+
"posthog-js": "project",
36+
"typeit": "github.com/hugo-toha/toha/v4"
3737
}
3838
},
3939
"dependencies": {
40-
"@atproto/api": "^0.13.18"
40+
"@atproto/api": "^0.13.18",
4141
},
4242
"devDependencies": {
4343
"@fontsource/mulish": "4.5.13",

0 commit comments

Comments
 (0)