Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
3e12c4c
Test: Disable Git info
dbreseman Jun 9, 2026
b8e727b
Trigger build
dbreseman Jun 9, 2026
95d97d2
Cache Hugo modules, re-enable Git info
dbreseman Jun 9, 2026
a93dff0
Trigger build post cache
dbreseman Jun 9, 2026
24c78be
Disable print on dev, remove Hugo module cache
dbreseman Jun 9, 2026
4ed1dae
Re-enable dev print
dbreseman Jun 11, 2026
4bc4749
Upgrade Hugo to 162.1
dbreseman Jun 11, 2026
ac7b587
Update deprecated languageCode/languageName
dbreseman Jun 11, 2026
8949436
Revert to Hugo 0.156.0
dbreseman Jun 11, 2026
6092161
Roll back to Docsy 12/Hugo 147/Node 22
dbreseman Jun 11, 2026
08b6fd5
Change to arm64 runners
dbreseman Jun 11, 2026
90b210c
Try arm64-graviton2
dbreseman Jun 11, 2026
c4f7a63
Update htmltest and python for arm64-graviton2
dbreseman Jun 11, 2026
8de1851
Restore Docsy 15/Hugo 157/Node 24
dbreseman Jun 11, 2026
b67540f
Update package-lock
dbreseman Jun 11, 2026
053cfd0
Little corrections
dbreseman Jun 11, 2026
f7e79a6
156
dbreseman Jun 11, 2026
5f29c4e
Back to Jammy with arm64
dbreseman Jun 11, 2026
199787a
Add disk space logging
dbreseman Jun 12, 2026
dd97d03
noble distribution
dbreseman Jun 12, 2026
131361f
Revert to dev config
dbreseman Jun 12, 2026
6683152
Merge branch 'development' into db-build-speed
dbreseman Jun 12, 2026
22e9ea0
Disable HTTP cache feature introduced in Hugo v0.127.0
dbreseman Jun 12, 2026
3aa5d9a
Disable caching even more
dbreseman Jun 12, 2026
ebd80ab
Try Docsy 12/Hugo 147
dbreseman Jun 16, 2026
08e78d1
Hugo 136/Docsy 11
dbreseman Jun 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- 24.15 # latest LTS version ('node' will give latest version, 'lts/*' will give LTS version )
- 20.19 # latest LTS version ('node' will give latest version, 'lts/*' will give LTS version )
arch: amd64 # optional, this is default, routes to a full VM
# arch: arm64 # this is the recommended LXD container - faster spin up but some limitations Not used as it seems very unstable.
os: linux # optional, this is default
Expand Down
12 changes: 2 additions & 10 deletions assets/scss/_styles_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
max-width: 90%; // NK - fixed width of all content to 90%

p, li, td {
font-weight: $td-font-weight-body-text;
font-weight: $font-weight-body-text;
}

// NK - custom additions for margin styling in lists
Expand Down Expand Up @@ -339,23 +339,16 @@ img {
// Hugo's ToC is a mouthful, this can be used to style the top level h2 entries.
> ul > li > ul > li > a {}

// Override Docsy 0.15+ which makes ToC bold by default
> ul > li > :not(ul) {
font-weight: $font-weight-normal;
}

a {
// NK - styling for ToC
color: $gray-800;
padding-left: 20px;
padding-bottom: .25rem;
padding-top: .25rem;

&:hover,
&:focus {
&:hover {
color: $link-hover-color;
text-decoration: underline;
background-color: transparent; // Override Docsy 0.15+ hover background
}
}

Expand Down Expand Up @@ -416,7 +409,6 @@ img {

.td-sidebar {
@include media-breakpoint-up(md) {
margin-top: 0; // Olu - removed docsy margin to align sidebar to top of page
padding-top: 5.25rem; // DB – aligns with .td-main main padding-top
background-color: $td-sidebar-bg-color;
padding-right: 1rem;
Expand Down
8 changes: 7 additions & 1 deletion config/_default/hugo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ disableKinds = ["taxonomy", "term"]
startLevel = 2

[module]
replacements = "github.com/FortAwesome/Font-Awesome -> @fortawesome/fontawesome-free, github.com/twbs/bootstrap -> bootstrap"
replacements = "github.com/FortAwesome/Font-Awesome -> ., github.com/twbs/bootstrap -> ."

# Comment out if you don't want the "print entire section" link enabled.
[outputs]
Expand All @@ -86,6 +86,12 @@ replacements = "github.com/FortAwesome/Font-Awesome -> @fortawesome/fontawesome-
[minify]
minifyOutput = false

# Disable HTTP cache feature introduced in Hugo v0.127.0

[httpCache]
[[httpCache.polls]]
disable = true

# Everything below this are Site Params
# ======================================
# These are mainly (all?) Docsy settings
Expand Down
3 changes: 0 additions & 3 deletions layouts/docs/single.html

This file was deleted.

Loading