Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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:
- 20.9 # latest LTS version ('node' will give latest version, 'lts/*' will give LTS version )
- 24.15 # 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: 10 additions & 2 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: $font-weight-body-text;
font-weight: $td-font-weight-body-text;
}

// NK - custom additions for margin styling in lists
Expand Down Expand Up @@ -339,16 +339,23 @@ 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 top-level (h2) items 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 {
&:hover,
&:focus {
color: $link-hover-color;
text-decoration: underline;
background-color: transparent; // Override Docsy 0.15+ hover background
}
}

Expand Down Expand Up @@ -409,6 +416,7 @@ 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
2 changes: 1 addition & 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 -> ., github.com/twbs/bootstrap -> ."
replacements = "github.com/FortAwesome/Font-Awesome -> @fortawesome/fontawesome-free, github.com/twbs/bootstrap -> bootstrap"

# Comment out if you don't want the "print entire section" link enabled.
[outputs]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ title: "Use Call REST Service Action in a Microflow"
url: /refguide/integration/use-call-rest-action-in-microflow/
weight: 15
description: "Describes how to integrate an existing system or a legacy system into a Mendix app by calling a REST service in a microflow."
description: "Describes how to get information from a REST service."
aliases:
- /howto/integration/consume-a-rest-service/
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
title: "Image Uploader"
url: /refguide/image-uploader/
weight: 50
weight: 50
#If moving or renaming this doc file, implement a temporary redirect and let the respective team know they should update the URL in the product. See Mapping to Products for more details.
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ title: "Use Call REST Service Action in a Microflow"
url: /refguide10/integration/use-call-rest-action-in-microflow/
weight: 15
description: "Describes how to integrate an existing system or a legacy system into a Mendix app by calling a REST service in a microflow."
description: "Describes how to get information from a REST service."
aliases:
- /howto10/integration/consume-a-rest-service/
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
title: "Image Uploader"
url: /refguide10/image-uploader/
weight: 50
weight: 50
#If moving or renaming this doc file, implement a temporary redirect and let the respective team know they should update the URL in the product. See Mapping to Products for more details.
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
title: "Consume a REST Service"
url: /refguide9/integration/consume-a-rest-service/
weight: 9
description: "Describes how to integrate an existing system or a legacy system into a Mendix app by calling a REST service in a microflow."
description: "Describes how to get information from a REST service."
aliases:
- /howto9/integration/consume-a-rest-service/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
title: "Image Uploader"
url: /refguide9/image-uploader/
weight: 50
weight: 50
#If moving or renaming this doc file, implement a temporary redirect and let the respective team know they should update the URL in the product. See Mapping to Products for more details.
---

Expand Down
3 changes: 3 additions & 0 deletions layouts/docs/single.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{{ define "main" }}
{{ .Render "content" }}
{{ end }}
2 changes: 1 addition & 1 deletion layouts/partials/feedback.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ <h2 class="feedback--title">Feedback</h2>
<button class="btn btn-primary mb-4 feedback--answer feedback--answer-yes">Yes</button>
<button class="btn btn-primary mb-4 feedback--answer feedback--answer-no">No</button>
<p class="feedback--response feedback--response-yes">
{{ .yes | safeHTML }}
{{ .Site.Params.ui.feedback.yes | safeHTML }}
</p>
<p class="feedback--response feedback--response-no">
Sorry to hear that. Please <a class="feedback--link" target="_blank" href="">tell us how we can improve</a>.
Expand Down
Loading