Skip to content
Merged
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 .github/workflows/hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build:
runs-on: ubuntu-latest
env:
HUGO_VERSION: 0.145.0
HUGO_VERSION: 0.155.3
steps:
- name: Install Hugo CLI
run: |
Expand Down
51 changes: 48 additions & 3 deletions docs/assets/scss/_variables_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,52 @@ Add styles or override variables from the theme here.

*/

//$primary: #fc9c62;;
$primary: #da5504;
$secondary: #fc9c62
//$secondary: white;
$secondary: #fc9c62;
$info: #c0e0de;
$light: rgb(13, 110, 253);
$dark: #403f4c;
$link-color: rgb(13, 110, 253);
$link-hover-color: darken($link-color, 15%);


// Override link colors only in document content
.td-content {
a {
color: $link-color !important;

&:hover {
color: $link-hover-color !important;
}
}
}

// Navbar styling - this is the correct way for Docsy 0.14.2
.td-navbar {
background-color: $primary !important;
border-color: $primary !important;
.navbar-brand {
color: #fff;

&:hover {
color: #fff;
}
}
.nav-link {
color: rgba(255, 255, 255, 0.75) !important;

&:hover {
color: rgba(255, 255, 255, 0.90) !important;
}
}
}

// RSS button styling
.td-rss-button {
color: rgba(85, 85, 85, 0.9) !important;
background-color: $info !important;
border-color: $info !important;
&:hover {
color: darken(rgba(85, 85, 85, 0.9), 100%) !important;
}
}
13 changes: 1 addition & 12 deletions docs/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,7 @@
# limitations under the License.
#

# THIS IS A TEST CONFIG ONLY!
# FOR THE CONFIGURATION OF YOUR SITE USE hugo.yaml.
#
# As of Docsy 0.7.0, Hugo 0.110.0 or later must be used.
#
# The sole purpose of this config file is to detect Hugo-module builds that use
# an older version of Hugo.
#
# DO NOT add any config parameters to this file. You can safely delete this file
# if your project is using the required Hugo version.

module:
hugoVersion:
extended: true
min: 0.110.0
min: 0.139.0
2 changes: 1 addition & 1 deletion docs/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module github.com/google/docsy-example

go 1.12

require github.com/google/docsy v0.11.0 // indirect
require github.com/google/docsy v0.14.2 // indirect
4 changes: 4 additions & 0 deletions docs/go.sum
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
github.com/FortAwesome/Font-Awesome v0.0.0-20240108205627-a1232e345536/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo=
github.com/FortAwesome/Font-Awesome v0.0.0-20240402185447-c0f460dca7f7/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo=
github.com/FortAwesome/Font-Awesome v0.0.0-20240716171331-37eff7fa00de/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo=
github.com/FortAwesome/Font-Awesome v0.0.0-20241216213156-af620534bfc3/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo=
github.com/google/docsy v0.9.1 h1:+jqges1YCd+yHeuZ1BUvD8V8mEGVtPxULg5j/vaJ984=
github.com/google/docsy v0.9.1/go.mod h1:saOqKEUOn07Bc0orM/JdIF3VkOanHta9LU5Y53bwN2U=
github.com/google/docsy v0.10.0 h1:6tMDacPwAyRWNCfvsn/9qGOZDQ8b0aRzjRZvnZPY5dg=
github.com/google/docsy v0.10.0/go.mod h1:c0nIAqmRTOuJ01F85U/wJPQtc3Zj9N58Kea9bOT2AJc=
github.com/google/docsy v0.11.0 h1:QnV40cc28QwS++kP9qINtrIv4hlASruhC/K3FqkHAmM=
github.com/google/docsy v0.11.0/go.mod h1:hGGW0OjNuG5ZbH5JRtALY3yvN8ybbEP/v2iaK4bwOUI=
github.com/google/docsy v0.14.2 h1:XJud05ZWCUFgvE9G1KdxhGsDdr7OmWYdnWPxrclIPWE=
github.com/google/docsy v0.14.2/go.mod h1:1Fj1W1O3esZh7IBQ8XAYtxtg10udBXuGI89+LUQc1AU=
github.com/twbs/bootstrap v5.2.3+incompatible h1:lOmsJx587qfF7/gE7Vv4FxEofegyJlEACeVV+Mt7cgc=
github.com/twbs/bootstrap v5.2.3+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
github.com/twbs/bootstrap v5.3.3+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
github.com/twbs/bootstrap v5.3.8+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
2 changes: 1 addition & 1 deletion docs/hugo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ desc = "Chat with others on our dedicated Discord server"
# workspace = "docsy.work"
[module.hugoVersion]
extended = true
min = "0.110.0"
min = "0.139.0"
[[module.imports]]
path = "github.com/google/docsy"
disable = false
1 change: 0 additions & 1 deletion docs/layouts/_default/_markup/render-heading.html

This file was deleted.

68 changes: 0 additions & 68 deletions docs/layouts/partials/scripts/mermaid.html

This file was deleted.